import * as React from 'react'; import { Ref } from 'react'; import { Store, StoreP, StoreV } from './store'; interface Props { of: S; args?: StoreP; memo?: boolean; storeRef?: Ref>; } export declare const Provider: { >(props: React.PropsWithChildren>): JSX.Element; displayName: string; defaultProps: { args: any[]; }; }; export {};