import { FormEl } from '../../types'; /** * Sets the ARIA role based on the input type * @param el * @param elements */ export declare function setAriaRole(el: FormEl, elements: FormEl[]): void; /** * Sets ARIA states based on attributes on the form * @param el */ export declare function setAriaStates(el: FormEl): void; /** * Sets ARIA attributes based on the current value * @param element * @param elGroup */ export declare function setAriaValue(element: FormEl, elGroup: FormEl[]): void; /** * Set the container * @param container * @param isGroup */ export declare function setAriaContainer(container: HTMLElement, isGroup: boolean): void; /** * Add the ARIA button role to all buttons contained in the form that don't already have an ARIA role * @param container */ export declare function setAriaButtons(container: HTMLElement): void;