import React from 'react';
import { Props } from '../index';
declare const useStore: () => Props | null;
interface StoreProps {
    children: React.ReactNode;
    value: any;
}
declare const StoreProvider: ({ children, value }: StoreProps) => JSX.Element;
export { StoreProvider, useStore as default };
