/** * Returns all light-DOM descendants matching `tag` inside `host`. * Uses `getElementsByTagName` on the host's light DOM \u2014 not Shadow DOM slot assignment. */ export declare const getLightChildrenByTag: (host: HTMLElement, tag: string) => HTMLElement[]; /** * Returns the `textContent` of the item whose `value` attribute matches `value`, * falling back to `value` itself when no match is found. * Used by choice-field components to derive labels for emitted change events. */ export declare const getChoiceLabel: (items: HTMLElement[], value: string) => string; //# sourceMappingURL=light-dom.d.ts.map