import { InvitesService } from './invites.service';
import { SendTestInviteDto, SendUpdateInvitationDto } from './invites.dto';
export declare class InvitesController {
    private readonly invitesService;
    constructor(invitesService: InvitesService);
    sendAndroidTestInvite(body: SendTestInviteDto): Promise<{
        status: boolean;
        message: string;
    }>;
    sendUpdateInvitation(body: SendUpdateInvitationDto): Promise<{
        status: boolean;
        message: string;
        version: string;
        build_number: string;
        results: {
            email: string;
            status: "sent" | "failed";
            error?: string;
        }[];
    }>;
}
