import { CompoundComponent } from '../../core';
import { RadioButton } from './RadioButton';
import { RadioGroup } from './RadioGroup';
import { RadioProps } from './index.types';
export type { RadioProps } from './index.types';
export declare const Radio: CompoundComponent<RadioProps, {
    Button: typeof RadioButton;
    Group: typeof RadioGroup;
}>;
