import type { IRadioComponentType } from './types';
export declare const createRadio: <RadioProps, GroupProps, IconProps, IndicatorProps, LabelProps>({ Root, Group, Icon, Indicator, Label, }: {
    Root: React.ComponentType<RadioProps>;
    Group: React.ComponentType<GroupProps>;
    Icon: React.ComponentType<IconProps>;
    Indicator: React.ComponentType<IndicatorProps>;
    Label: React.ComponentType<LabelProps>;
}) => IRadioComponentType<RadioProps, GroupProps, IconProps, IndicatorProps, LabelProps>;
