import React, { ReactNode } from "react"; export declare type RadioItemType = { label: string | ReactNode; value: string; disabled?: boolean; checked?: boolean; }; export declare type RadioItem = RadioItemType | string; export declare type RadioGroupProps = { option: RadioItem[]; onChange?: (value: string | number) => void; name: string; circle?: boolean; align?: "center" | "end"; direction?: "rtl"; justify?: "around" | "between"; id?: string; padding?: true; border?: boolean; style?: React.CSSProperties; radioStyle?: React.CSSProperties; defaultChecked?: string | number; color?: string; inline?: boolean; size?: number; fancy?: boolean; checkedClass?: string; dataTrackId?: string; }; declare const RadioGroup: React.FC; export default RadioGroup;