import { BeakerOptions, BeakerStores, FormulaOptions, FormulaStores, FormulaValue, FormulaValueDefault } from '../../types'; /** * Create the stores for the the form instance, these can be set using the `defaultValue` property * of FormulaOptions * @param options * @param initialData * * @returns An object containing the stores for the form instance */ export declare function createFormStores(options?: FormulaOptions, initialData?: T): FormulaStores; /** * Create a group store which contains arrays of form store values */ export declare function createGroupStores(options?: BeakerOptions): BeakerStores;