export interface PapaParseApi{parse(input:string,options?:Record):unknown;} /** Uncached worker, shared by `` and `` (both parse delimited * text through the optional `papaparse` peer) — `importPapaParse` is injectable for tests. Tolerates * either a `{ default }` ESM interop shape or the module itself already being the API, so it works * regardless of how a given bundler/test harness resolves the CJS `papaparse` package. */ export declare function loadPapaParse(importPapaParse?:()=>Promise):Promise; /** Cached accessor — the actual dynamic `import('papaparse')` and its resolved API are shared across * every caller regardless of which component asked first, instead of each component maintaining its * own independent cache of the same peer. */ export declare function loadPapaParseCached():Promise;export declare function clearPapaParseCache():void;