/** Retrieves all option descendants of a given element. */ export declare function getOptions(el: HTMLElement): HTMLElement[]; /** Retrieves the first option descendant of a given element. */ export declare function getFirstOption(el: HTMLElement): HTMLElement | null;