import { IDataSend } from "../actions/data-send.action"; import { Schemas } from "../../../core/utils/get-column-chart"; import { ITemplate as ITemplateItem } from '../../../template/models'; export interface INavigationState { navigator: any[]; } export declare const initialNavigationState: INavigationState; export interface IErrorState { error: string; } export interface IRightbarState { isShowRightbar: boolean; } export declare const initialErrorState: IErrorState; export declare const initialRightbarState: IRightbarState; export declare const initialPublishState: IPublishActionState; export interface IDataSendState { dataSend: IDataSend; } export interface IPublishActionState { sharedUuid: string; } export interface IChartBind { data: any; } export declare const initDataSendState: IDataSendState; export declare const initChartBindState: IChartBind; export interface ISchemas { schemas: Schemas; formData: any; } export declare const initSchemas: ISchemas; export interface ITemplate { isTemplatePublish: boolean; uuid: string; } export declare const initTemplate: ITemplate; export interface ICart { listWishlist: ITemplateItem[]; open: boolean; } export declare const initCart: ICart;