import { InputRadioProps } from '../../common/components/input-radio/InputRadio'; import { BaseInputFieldProps } from '../../common/types/input'; export interface RadioProps extends Omit, InputRadioProps { } /** * uncontrolled * controlled * * The `` component is for "one-choice-only" input.
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/619e422b323f84082ff0b259) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio) for further information about the element and related attributes. */ declare const Radio: import("react").ForwardRefExoticComponent>; export default Radio;