import type { CloudflareApi } from "../../cloudflare/api.ts"; import type { DOStateStoreAPI } from "./api.ts"; interface DOStateStoreClientOptions { app: string; stage: string; url: string; token: string; } export declare class DOFSStateStoreClient { private readonly options; constructor(options: DOStateStoreClientOptions); rpc(method: T, params: DOStateStoreAPI.API[T]["params"]): Promise; validate(): Promise; waitUntilReady(): Promise; fetch(path: string, init?: RequestInit): Promise; } export declare function upsertStateStoreWorker(api: CloudflareApi, workerName: string, token: string, force: boolean): Promise; export {}; //# sourceMappingURL=store.d.ts.map