import type { Selector } from '../../types/internal';
/**
 * Get input from multiselector (usually from `<input type="radio">`) by input value.
 */
export declare const getInputByValue: (input: Selector, value: string) => Promise<Selector | null>;
