import type { ThemeBaseSize } from "../theme.types"; export interface RadioGroupProps extends Omit, "value" | "defaultValue" | "onChange" | "size"> { color?: "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error"; size?: ThemeBaseSize; label?: string; helperText?: string; value?: string | number; defaultValue?: string | number; onChange?: (value: string | number) => void; slots?: { label?: string; helperText?: string; groups?: string; }; } /** ref属性会转发至内部的input元素 */ export declare function RadioGroup(props: RadioGroupProps): import("react").JSX.Element;