import React from 'react';
import { Store } from '../typeHelper';
interface StoreProps {
    store: Store;
    context?: React.Context<Store<any>>;
    children?: any;
}
export declare const Provider: React.FC<StoreProps>;
export {};
