export declare class DashboardStatsDto {
    active_projects: number;
    approved_leaves_today: number;
    pending_leaves: number;
    clocked_in_users: number;
    not_clocked_in_users: number;
}
export declare class RecentProjectDto {
    project_id: number;
    project_name: string;
    client_name: string;
    total_hours: number;
    status: string;
}
export declare class RecentLeaveDto {
    leave_id: number;
    from_date: string;
    to_date: string;
    type: string;
    status: string;
    reason: string;
    applied_date: string;
}
export declare class DashboardResponseDto {
    stats: DashboardStatsDto;
    recent_projects: RecentProjectDto[];
    recent_leaves: RecentLeaveDto[];
}
