import { Unsubscribe } from 'redux'; import { State, Store } from './store/types'; export declare function setup(store: Store): void; declare const provider: { readonly getState: () => State; readonly dispatch: import("redux").Dispatch & import("./store/types").Dispatch; subscribe: (id: string | null, listener: () => void) => Unsubscribe; }; export declare type Provider = typeof provider; export default provider;