import { type InputHTMLAttributes, type HTMLAttributes } from "react"; export interface RadioProps extends Omit, "type"> { label?: string; error?: boolean; } export declare const Radio: import("react").ForwardRefExoticComponent>; export interface RadioGroupProps extends HTMLAttributes { label?: string; orientation?: "horizontal" | "vertical"; error?: boolean; errorMessage?: string; } export declare const RadioGroup: import("react").ForwardRefExoticComponent>;