import { StateT as GlobalStateT } from "../domains/global/reducer"; import { storeKey as globalKey } from "../domains/global/constants"; import { StateT as ChartStateT } from "../domains/chart/reducer"; import { storeKey as chartKey } from "../domains/chart/constants"; import { StateT as DashboardStateT } from "../domains/dashboard/reducer"; import { storeKey as dashboardKey } from "../domains/dashboard/constants"; export declare type AppStateT = { [globalKey]: GlobalStateT; [chartKey]: ChartStateT; [dashboardKey]: DashboardStateT; };