export declare class AttendanceHoliday {
    id: number;
    date: Date;
    type: string;
    name: string;
    is_paid: boolean;
    created_at: Date;
}
