import { FormEl, FormulaStores } from '../../types'; /** * Creates the handler for a group of elements for the dirty event on the group name, once an * element in the group has been changed, all element blur handlers will be removed * * @private * * @param name The name of the group to create the blur handlers for * @param elements The elements that belong to the named group * @param stores The stores for the form instance * * @returns Function that when called will remove all blur handlers from the elements, if not removed by user action */ export declare function createDirtyHandler(name: string, elements: FormEl[], stores: FormulaStores): () => void;