export interface ReadableStore { /** Svelte store contract: subscribe, get an unsubscribe back. */ subscribe: (run: (value: T) => void) => () => void; } export interface WritableStore extends ReadableStore { set: (value: T) => void; get: () => T; } export declare const writable: (initial?: T) => WritableStore; //# sourceMappingURL=store.d.ts.map