export declare class ApplicationRequest { 'remote_id'?: string | null; 'candidate'?: string | null; 'job'?: string | null; 'applied_at'?: Date | null; 'rejected_at'?: Date | null; 'source'?: string | null; 'credited_to'?: string | null; 'current_stage'?: string | null; 'reject_reason'?: string | null; 'custom_fields'?: { [key: string]: any; } | null; 'remote_template_id'?: string | null; 'integration_params'?: { [key: string]: any; } | null; 'linked_account_params'?: { [key: string]: any; } | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }