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