import type { StoreApi } from "zustand";
export type ReadonlyStore<T> = Omit<StoreApi<T>, "setState" | "destroy">;
export declare const writableStore: <T>(store: ReadonlyStore<T> | undefined) => StoreApi<T>;
//# sourceMappingURL=ReadonlyStore.d.ts.map