import * as actions from './types/actions'; /** * * @param {string} id * @param {string} name * @returns actions.IAddGroupAcion Object of the action */ export declare const addGroup: (id: string, name: string, isCollapsed: boolean, visible: boolean) => actions.IAddGroupAcion; /** * * @param {strin} id * @returns {actions.IRemoveGroupAction} Object of the action */ export declare const removeGroup: (id: string) => actions.IRemoveGroupAction; /** * * @param {string} id * @param {string} property * @param {any} value * @returns {actions.IUpdateGroupPropertyAction} Object of the action */ export declare const updateGroupProperty: (id: string, property: string, value: any) => actions.IUpdateGroupPropertyAction; //# sourceMappingURL=actions.d.ts.map