import { InitInput } from 'web-csv-toolbox-wasm'; import { isInitialized, resetInit } from './loaders/loadWASM.web.ts'; export * from 'web-csv-toolbox-wasm'; export { isInitialized, resetInit }; export declare function loadWASM(input?: InitInput): Promise; /** * Ensure WASM module is initialized. Auto-initializes if not already initialized. * * @param input - Optional `InitInput` or module path for WASM initialization. Auto-detects if not provided. * @internal */ export declare function ensureWASMInitialized(input?: InitInput): Promise; export declare function isWASMReady(): boolean;