export interface RadioSmProps {
    id?: string;
    name: string;
    value: string;
    checked: boolean;
    label: string;
    onChange: (value: string) => void;
    className?: string;
    disabled?: boolean;
    required?: boolean;
    "aria-label"?: string;
    "aria-describedby"?: string;
}
export declare const RadioSm: import('react').ForwardRefExoticComponent<RadioSmProps & import('react').RefAttributes<HTMLInputElement>>;
