//#region src/main/worker/helperFs.d.ts interface SetupFSOptions { writableDataPath: string; indexedDBTimeoutMs: number; } /** * Initializes the filesystem with IDBFS for persistent storage. * * Setup flow: * 1. Create and mount IDBFS with autoPersist (writes are automatically persisted to IndexedDB) * 2. Perform initial population sync to load previously persisted data */ declare function setupFS(options: SetupFSOptions): Promise; //#endregion export { SetupFSOptions, setupFS };