import { IOnInitAction, IUpdatePagePropertyAction } from './types/actions'; /** * Action creator for: **ON_INIT** * * @param {any} config * @returns IOnInitAction */ export declare const pagesOnInit: (config: any) => IOnInitAction; /** * Action creator for: **ADD_PAGE** * * @param {string} id - id of the new page * @param {string} name - name of the new page * @param {boolean=true} visible - is the new page visible or not */ export declare const addPage: (id: string, name: string, visible?: boolean) => { type: string; payload: { id: string; name: string; visible: boolean; }; }; /** * Action creator for: **UPDATE_PAGE_PROPERTY** * * @param {string} id - id of the page * @param {string} property - property what you want to modify * @param {any} value - new value of selected property * @returns IUpdatePagePropertyAction */ export declare const updatePageProperty: (id: string, property: string, value: any) => IUpdatePagePropertyAction; //# sourceMappingURL=actions.d.ts.map