import * as React from 'react';

interface RadioGroupProps {
    value?: string;
    defaultValue?: string;
    onValueChange?(v: string): void;
    name?: string;
    disabled?: boolean;
    'aria-label'?: string;
    'aria-labelledby'?: string;
    children: React.ReactNode;
    className?: string;
}
declare function RadioGroup({ className, children, ...props }: RadioGroupProps): React.JSX.Element;
interface RadioProps {
    value: string;
    id?: string;
    disabled?: boolean;
    'aria-label'?: string;
    className?: string;
}
declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLButtonElement>>;

export { Radio, RadioGroup, type RadioGroupProps, type RadioProps };
