import { FC } from 'react';
import { RadioGroupContextProps } from './RadioGroupContext';
export interface RadioGroupProps extends RadioGroupContextProps {
    /**
     * The Radio Buttons to display in the group.
     */
    children: any;
    /**
     * Additional CSS classes to apply to the Radio group
     */
    className?: string;
}
export declare const RadioGroup: FC<RadioGroupProps>;
