export interface Store {
    setState: (partial: Record<string, any>) => void;
    getState: () => any;
    subscribe: (listener: () => void) => () => void;
}
export default function createStore(initialState: object): Store;
