import { FC } from 'react'; import { TMapStores, IWithStoreOptions } from "./types.js"; /** * Make component observable and pass stores as props */ declare const withStores: , TS extends TMapStores>(Component: FC, stores: TS, { customContextId }?: IWithStoreOptions) => FC>; export { withStores as default };