import { FunctionComponent } from 'react'; import StoreSet from './StoreSet'; /** * Properties for the StoreSet component. */ export interface StoreSetProviderProps { value: StoreSet; } /** * Provider for all application stores. */ declare const StoreSetProvider: FunctionComponent; export default StoreSetProvider;