import { BaseConditionInput, BasePaginationInput } from '../base.input'; export declare class BaseInterviewInput { interviewId: string; candidateId: string; createBy: string; createDate: Date; interviewDate: Date; interviewEndTime: Date; interviewStartTime: Date; intervieweeEmail: string; intervieweeFullName: string; intervieweeId: string; lastUpdate: Date; location: string; name: string; notes: string; recruiterId: string; updateBy: string; interviewer: string; gCalendarEventId: string; canceled: number; canceledAt: Date; approved: number; approvedBy: string; approvedAt: Date; jobId: string; isRescheduled: number; isSuccess: number; status: number; platform: number; } export declare class CreateInterviewInput extends BaseInterviewInput { } export declare class UpdateInterviewInput extends BaseInterviewInput { id: string; } export declare class InterviewPaginationInput extends BasePaginationInput { } export declare class InterviewConditionInput extends BaseConditionInput { candidateId: string; } declare const InterviewQueryInput_base: any; export declare class InterviewQueryInput extends InterviewQueryInput_base { } export {}; //# sourceMappingURL=interview.input.d.ts.map