import { FormEl } from '../../types'; /** * Extract all fields from the form that are valid inputs with `name` property that are not part of a form group * * @private * @internal * @param rootEl */ export declare function getFormFields(rootEl: HTMLElement): FormEl[]; /** * Extract all fields from a group that are valid inputs with `name` property * @param rootEl */ export declare function getGroupFields(rootEl: HTMLElement): FormEl[];