import type { ThemeBaseSize } from "../theme.types"; export interface RadioGroupContextValue { name: string | undefined; value: any; onChange: (e: React.ChangeEvent) => void; /** * * @default sm */ size?: ThemeBaseSize; color?: "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error"; disabled?: boolean; } export declare const RadioGroupContext: import("react").Context, useRadioGroupContext: () => RadioGroupContextValue | null;