import { HTMLAttributes, ReactNode, InputHTMLAttributes, default as React } from 'react'; type EnhancedRadioFieldProps = HTMLAttributes & Pick, 'checked'>; export interface RadioFieldProps extends EnhancedRadioFieldProps { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * ID to identify input and corresponding label. */ id: string; /** * The text or component displayed to identify the input radio. */ label: string | ReactNode; /** * The value to identify the input radio. */ value?: string; /** * Identify radio in the same group. */ name?: string; } declare const RadioField: React.ForwardRefExoticComponent>; export default RadioField; //# sourceMappingURL=RadioField.d.ts.map