declare class AdmissionStatusHistory {
    _id?: string;
    adsh_application_id_admap?: string;
    adsh_status_from?: string;
    adsh_status_to?: string;
    adsh_status_change_date?: Date;
    adsh_status_change_reason?: string;
    adsh_status_change_notes?: string;
    adsh_changed_by_user?: string;
    adsh_notification_sent?: boolean;
    adsh_notification_sent_date?: Date;
    adsh_email_sent?: boolean;
    adsh_sms_sent?: boolean;
    adsh_interview_scheduled_date?: Date;
    adsh_interview_completed_date?: Date;
    adsh_interview_notes?: string;
    adsh_interviewer_user?: string;
    adsh_decision_date?: Date;
    adsh_decision_notes?: string;
    adsh_waitlist_position?: number;
    adsh_rejection_reason?: string;
    adsh_created_date?: Date;
    adsh_isactive?: boolean;
    createdAt?: Date;
    updatedAt?: Date;
}
export { AdmissionStatusHistory };
