import { Store } from './types'; export interface Listener { (): void; } export declare function create(initialState: S): Store;