import { BaseConditionInput, BasePaginationInput } from '../base.input'; export declare class BaseJobInterviewInput { created: Date; updated: Date; approved: number; jobId: string; requestedById: string; attachedContract: string; creditsBalance: number; creditsPerInterview: number; expiryDate: Date; salary: number; totalChargedCredits: number; totalInterviewBudget: number; statusId: number; active: number; creditsPending: number; consultant: string; } export declare class CreateJobInterviewInput extends BaseJobInterviewInput { } export declare class UpdateJobInterviewInput extends BaseJobInterviewInput { id: string; } export declare class JobInterviewPaginationInput extends BasePaginationInput { } export declare class JobInterviewConditionInput extends BaseConditionInput { } declare const JobInterviewQueryInput_base: any; export declare class JobInterviewQueryInput extends JobInterviewQueryInput_base { } export {}; //# sourceMappingURL=job-interview.input.d.ts.map