import { HistoryCreator, MyHistoryOptions } from "@gongt/ts-stl-library/browser/history-object"; import { GlobalVariable } from "@gongt/ts-stl-library/pattern/global-page-data"; import { ReactRender } from "../../react/render"; import { ReduxStoreWindow } from "../../redux/store-client"; import { ReduxStore } from "../store"; export interface ReduxRouterOptions { history: HistoryCreator; } export declare function reduxHandleReactRouter(react: ReactRender, redux: ReduxStoreWindow, options?: MyHistoryOptions): void; export declare function reduxHandleReactRouterBase(react: ReactRender, redux: ReduxStore, options: (global: GlobalVariable) => MyHistoryOptions): void;