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