import type { Scope } from "../scope.js"; import type { State, StateStore } from "../state.js"; export declare class FileSystemStateStore implements StateStore { readonly scope: Scope; readonly dir: string; private initialized; constructor(scope: Scope); init(): Promise; deinit(): Promise; count(): Promise; list(): Promise; get(key: string): Promise; set(key: string, value: State): Promise; delete(key: string): Promise; all(): Promise>; getBatch(ids: string[]): Promise>; private getPath; } //# sourceMappingURL=file-system-state-store.d.ts.map