import { RouterReducerState } from '@ngrx/router-store'; import { INavigationState, IErrorState, IRightbarState, IDataSendState, IPublishActionState, IChartBind, ISchemas, ITemplate, ICart } from "./document.state"; export interface IAppState { router?: RouterReducerState; navigation: INavigationState; error: IErrorState; isShowRightbar: IRightbarState; dataSend: IDataSendState; sharedUuid: IPublishActionState; data: IChartBind; schemas: ISchemas; template: ITemplate; cart: ICart; } export declare const initialAppState: IAppState; export declare function getInitialState(): IAppState;