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