import React from "react"; interface TaskEntity { id: string; values: { title: string; status: string; dueDate: string | null; stageId: string | null; priority?: string | null; clientId: string | null; client?: { name?: string; } | null; }; } export interface CalendarWidgetProps { loading: boolean; tasks: TaskEntity[]; onOpenTask: (taskId: string) => void; } export declare function CalendarWidget({ loading, tasks, onOpenTask }: CalendarWidgetProps): React.JSX.Element; export {};