import { Ref, ComputedRef } from 'vue'; import { CellPosition, ColumnConfig, Row, SpreadsheetChange } from '../types'; export declare function useSpreadsheetClipboard(localRows: Ref, columns: ComputedRef, selectionStart: Ref, selectionEnd: Ref, saveState: (type: SpreadsheetChange['type']) => void, isCellEditable: (key: string) => boolean, createEmptyRow: () => Row, emitUpdate: () => void): { copySelection: () => Promise; pasteSelection: () => Promise; }; //# sourceMappingURL=useSpreadsheetClipboard.d.ts.map