import type { GridState } from './types'; import type { Actions } from './actions'; import type { StoreSelectors } from './selectors'; export type Store = { subscribe: (listener: () => void) => () => void; dispatch: (action: Actions) => void; getState: () => GridState; selectors: StoreSelectors; }; export declare function createStore(): Store; //# sourceMappingURL=createStore.d.ts.map