import { FormSchemaType } from './store'; import type { StoreActions } from 'react-simple-hook-store'; export declare type StoreGlobalActions = { setStore: (newStore: FormSchemaType) => void; clearStore: () => void; }; export declare const storeActions: StoreActions;