import { InputHTMLAttributes, default as React } from 'react';
export interface RadioOptionProps extends Omit, 'type'> {
/**
* ID to find this component in testing tools (e.g.: cypress,
* testing-library, and jest).
*/
testId?: string;
/**
* Attribute to set aria-label option as required.
*/
label: string;
/**
* Value to be emitted when radio is clicked.
*/
value: string | number;
}
declare const RadioOption: React.ForwardRefExoticComponent>;
export default RadioOption;
//# sourceMappingURL=RadioOption.d.ts.map