import React, { InputHTMLAttributes } from 'react'; import { AriaFocusProps } from '../../types/common'; import { RadioCategoryType, RadioItemType, RadioWidthType } from './RadioGroup'; interface RadioBaseType extends Omit, 'type' | 'size' | 'width'>, AriaFocusProps { } export interface RadioProps extends RadioBaseType, RadioCategoryType { /** @default false */ fill?: boolean; /** @default 'auto' */ width?: RadioWidthType; className?: string; } export declare const Radio: React.ForwardRefExoticComponent>; export {};