import React from 'react'; import type { TabData } from '../hooks/useDashboardData.js'; import type { MutateResult } from '../hooks/useMutate.js'; interface DashboardTasksTabProps { data: TabData; mutate?: (op: string, args: Record) => Promise; projectId?: string; /** Whether the dashboard owns the keyboard. Defaults true for standalone tests. */ active?: boolean; } export declare function DashboardTasksTab({ data, mutate, projectId, active }: DashboardTasksTabProps): React.JSX.Element; export {};