import { RefAttributes } from 'react'; import { BoxProps, BoxTagProps } from '../box'; import { ComponentsAndVariants } from '../types'; declare const tagProps: readonly ["name", "onInput", "onChange", "value", "autoFocus", "readOnly", "defaultChecked"]; type TagPropsType = (typeof tagProps)[number]; type RadioButtonProps = Omit, 'tag' | 'props'>; type RadioButtonTagProps = Omit, TagPropsType | 'type'>; interface Props extends RadioButtonProps { name?: string; props?: RadioButtonTagProps; onInput?: (e: React.ChangeEvent) => void; onChange?: (e: React.ChangeEvent) => void; value?: string | number; autoFocus?: boolean; readOnly?: boolean; defaultChecked?: boolean; } declare const _default: (props: Props & RefAttributes) => React.ReactNode; export default _default;