import type { Cell } from '@fortune-sheet/core'; import { type SpreadsheetTextOrientationId } from '../work-spreadsheet-text-orientation'; import { type OfficeEditorExtension } from './office-editor-extension'; import type { SpreadsheetCommandContext, SpreadsheetCommandRange, SpreadsheetEditorCommands } from './spreadsheet-command-controller'; export declare const MAX_SPREADSHEET_TEXT_ORIENTATION_CELLS = 10000; export interface SpreadsheetTextOrientationApiCall { name: 'setCellFormatByRange'; args: [ 'rt' | 'tr', Cell['rt'] | Cell['tr'] | undefined, SpreadsheetCommandRange, { id: string; } ]; } export declare function createSpreadsheetTextOrientationExtension(): OfficeEditorExtension; export declare function spreadsheetTextOrientationApiCalls(range: SpreadsheetCommandRange, sheetId: string, choice: SpreadsheetTextOrientationId): SpreadsheetTextOrientationApiCall[];