import type { Cell, Selection } from '@fortune-sheet/core'; import type { WorkAgentProposalTarget } from './work-agent-proposal'; import { type WorkSpreadsheetContent } from './work-types'; export interface WorkSpreadsheetAgentSelection { sheetId: string; sheetName: string; reference: string; cellCount: number; context: string; clipboard: string; truncated: boolean; proposalTargets: WorkAgentProposalTarget[]; } export declare function spreadsheetAgentSelection(content: WorkSpreadsheetContent, sheetId: string, selection: Pick, maximumCells?: number): WorkSpreadsheetAgentSelection | null; export declare function spreadsheetCellSourceText(cell: Cell | null): string;