import type { FC } from 'react'; import type { IStore } from '../../libs/cargo-hold'; export interface StoreProviderProps { store: IStore; } export declare const StoreProvider: FC;