import type { OfficeKernelSpreadsheetInputSheet, OfficeKernelSpreadsheetSessionCalculationRequest, OfficeKernelSpreadsheetSessionCalculationResult } from './office-kernel-spreadsheet-protocol'; export declare class JavaScriptSpreadsheetCalculationSession { private documentRevision; private sheets; calculate(request: OfficeKernelSpreadsheetSessionCalculationRequest): Promise; private patchSheets; } export declare function calculateSpreadsheetSessionInJavaScript(request: OfficeKernelSpreadsheetSessionCalculationRequest, sheets: OfficeKernelSpreadsheetInputSheet[]): Promise;