/// import { History } from 'history'; import { Container } from '../common-data/container'; import { CommonDataState, CommonDataPluginOptions } from '../common-data/types'; declare function Provider(props: { history: History; initialState: CommonDataState; children: any; }): JSX.Element; export default function commonDataWebPlugin(options: CommonDataPluginOptions, history?: History): Promise<{ component: typeof Provider; props: { initialState: any; history: History<{}>; }; } | { component: typeof Container; props: { initialState: any; history?: undefined; }; }>; export {};