import type { SpreadsheetKernel } from './kernel-types.js'; import { type WorksheetImportStorage } from './worksheet-import-storage.js'; export type { SpreadsheetKernel } from './kernel-types.js'; export type { WorksheetImportStorage, WorksheetImportStorageSnapshot } from './worksheet-import-storage.js'; interface EnsureWasmBinaryPathForNodeOptions { readonly importMetaUrl: string; readonly existsSync: (path: string) => boolean; readonly fileURLToPath: (url: URL) => string; } export declare function ensureWasmBinaryPathForNode(options: EnsureWasmBinaryPathForNodeOptions): string; export declare function createKernel(): Promise; export declare function createKernelSync(): SpreadsheetKernel; export declare function createWorksheetImportStorageSync(): WorksheetImportStorage;