export declare class CreateAttendanceLogDto {
    user_id: number;
    type: 'CHECKIN' | 'CHECKOUT';
    time: string;
    source?: string;
    location?: string;
    network?: string;
    device_info?: string;
    is_manual?: boolean;
    request_id?: number;
}
