///
export interface RadioGroupProps {
options: Array;
selected: any;
onClick?: (key: any) => void;
horizontal?: boolean;
customColor?: string;
disabled?: boolean;
}
interface RadioButton {
label: string;
value: any;
}
export declare const RadioGroup: ({ selected, onClick, options, horizontal, customColor, disabled, }: RadioGroupProps) => JSX.Element;
export {};