declare enum InterviewInviteCandidateType {
    SHORTLISTED = "SHORTLISTED",
    APPLICANTS = "APPLICANTS",
    RECOMMENDED = "RECOMMENDED",
    NEW = "NEW"
}
export declare class ExistingCandidateDto {
    id: string;
    type: InterviewInviteCandidateType;
}
export declare class NewCandidateDto {
    name: string;
    email: string;
    type: InterviewInviteCandidateType;
}
export declare class SendInterviewInviteDto {
    jobId: string;
    existingCandidates?: ExistingCandidateDto[];
    newCandidates?: NewCandidateDto[];
}
export {};
