import type { FC } from 'react'; import type { IStore } from '../../libs/cargo-hold'; export interface NestedStoreProviderProps { tag: symbol; store: IStore; } export declare const NestedStoreProvider: FC;