import * as React from 'react'; import { StandardProps } from '..'; import { SwitchBaseProps, SwitchBaseClassKey } from '../internal/SwitchBase'; export interface RadioProps extends StandardProps {} export type RadioClassKey = SwitchBaseClassKey; declare const Radio: React.ComponentType; export default Radio;