export declare class ClockInResponseDto {
    status: "CLOCKED_IN" | "CLOCKED_OUT";
    message: string;
    clock_in_time?: Date;
    clock_out_time?: Date;
    duration?: string;
}
export declare class LastClockInfoResponseDto {
    lastClockIn: {
        id?: number;
        clock_in?: Date;
        clock_out?: Date;
        duration?: string;
        status?: "ONGOING" | "COMPLETED";
    } | null;
    lastTimeTracking: {
        id?: number;
        project_name?: string;
        activity_type?: string;
        start_time?: Date;
        end_time?: Date;
        total_minutes?: number;
        description?: string;
    } | null;
}
