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