import { default as React, InputHTMLAttributes } from 'react'; export interface RadioProps extends Omit, 'type'> { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const Radio: React.ForwardRefExoticComponent>; export default Radio; //# sourceMappingURL=Radio.d.ts.map