/**
 * @file inputAria.ts
 * @input Receives input label/description IDs and optional InputGroup context
 * @output Exports helpers for consistent input ARIA composition
 * @position Internal utility; used by inputs that compose labels/descriptions
 */
export interface InputARIAInputGroup {
    /** ID of the visible InputGroup label. */
    labelID: string;
    /** Space-separated IDs for InputGroup description/status text. */
    describedByIDs?: string;
}
export interface InputARIA {
    /** Value for aria-labelledby on the input. */
    ariaLabelledBy?: string;
    /** Value for aria-describedby on the input. */
    ariaDescribedBy?: string;
}
type AriaID = string | null | undefined | false;
/**
 * Builds ARIA label/description wiring for an input.
 *
 * Standalone inputs keep their normal native label association. Grouped inputs
 * are named by the visible InputGroup label plus their own input label, and
 * inherit group description/status text in addition to input-local text.
 */
export declare function getInputARIA(labelID: string, describedByIDs?: AriaID[], inputGroup?: InputARIAInputGroup | null): InputARIA;
export {};
//# sourceMappingURL=inputAria.d.ts.map