import type { GetRadioButtonLabel, GetRadioButtonValue } from '../definitions/types.js'; /** * Finds a radio button by its value. * Optionally a custom function can be passed to get the value of the radio button. * * [Aracna Reference](https://aracna.dariosechi.it/web/utils/radio-element) */ export declare function findRadioButtonByValue(options: T[], value: unknown, getValue?: GetRadioButtonValue): T | undefined; /** * Finds a radio button label by its value. * * - Optionally a custom function can be passed to get the label of the radio button. * - Optionally a custom function can be passed to get the value of the radio button. * * [Aracna Reference](https://aracna.dariosechi.it/web/utils/radio-element) */ export declare function findRadioButtonLabelByValue(options: T[], value: unknown, getLabel?: GetRadioButtonLabel, getValue?: (option: T) => any): string | undefined;