import type { ReactNode } from 'react'; import { BoxProps } from '../Box'; export interface RadioButtonProps extends BoxProps { checked: boolean; name: string; value: string; onChange: (value: string) => void; disabled?: boolean; children: ReactNode; autoFocus?: boolean; } export declare let RadioButton: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default RadioButton;