import type { Selection, Sheet } from '@fortune-sheet/core'; export type SpreadsheetCellClearMode = 'all' | 'formats' | 'contents' | 'comments' | 'hyperlinks'; export declare function clearSpreadsheetSheetSelection(sheet: Sheet, selection: Pick, mode: SpreadsheetCellClearMode): Sheet;