import { xy } from '@synnaxlabs/x'; export interface Store { subscribe: (key: string, onChange: () => void) => () => void; get: (key: string) => xy.XY[]; commit: (next: Map) => void; } export declare const createStore: () => Store; //# sourceMappingURL=store.d.ts.map