import { GroupType, FormSchemaType } from './store'; import { StoreActions } from 'react-simple-hook-store'; export declare type GroupingActions = { addGroup: (group: GroupType) => void; setActiveGroup: (id: string) => void; removeGroup: (id: string) => void; renameGroup: (id: string, name: string) => void; swapGroups: (index: number, newPositionIndex: number) => void; }; export declare const groupingActions: StoreActions;