import { InitInput } from 'web-csv-toolbox-wasm'; export * from 'web-csv-toolbox-wasm'; export { isInitialized, resetInit } from './loaders/loadWASM.web.ts'; /** * Load and initialize the WebAssembly module using streaming (slim entry). * * You MUST call this function with a WASM URL before using WASM-based synchronous APIs * like `parseStringToArraySyncWASM`. * * @param input - WASM module URL (required for slim entry) */ export declare function loadWASM(input: InitInput): Promise; export declare function isWASMReady(): boolean; export declare function ensureWASMInitialized(input: InitInput): Promise;