import { InputHTMLAttributes } from "react"; interface Props { /** * Color of the checkbox * @default "primary" */ color: "primary" | "neutral" | "error" | "warning" | "success"; } export declare function RadioButton({ color, className, children, ...props }: InputHTMLAttributes & Partial): import("react/jsx-runtime").JSX.Element; export {};