import type { WorkAgentProposalApplyResult, WorkAgentProposalChange } from './work-agent-proposal'; import type { WorkPresentationContent, WorkSpreadsheetContent } from './work-types'; export interface WorkAgentProposalApplyOutcome { content: T; result: WorkAgentProposalApplyResult; } export declare function applySpreadsheetAgentProposalChanges(content: WorkSpreadsheetContent, sheetId: string, changes: readonly WorkAgentProposalChange[]): WorkAgentProposalApplyOutcome; export declare function applyPresentationAgentProposalChanges(content: WorkPresentationContent, slideId: string, changes: readonly WorkAgentProposalChange[]): WorkAgentProposalApplyOutcome;