/// import { ThemeColorPaletteVariables } from '@dreipol/t3-react-theme'; export type RadioButtonProps = { /** * Label of input */ label?: string; /** * Radio group name */ name?: string; /** * Value of the form element */ value: string; /** * Render as checked */ checked?: boolean; /** * Render disabled state */ disabled?: boolean; /** * Custom classname */ className?: string; /** * Change handler */ onChange?: (val: string) => void; /** * Custom color */ color?: ThemeColorPaletteVariables | string; }; export declare const RadioButton: (props: RadioButtonProps & import("react").RefAttributes) => import("react").ReactElement> | null;