import { InputHTMLAttributes } from "react";
import { ClassName } from "@helpers/types";
export interface RadioProps extends Omit, "size">, ClassName {
name: string;
id: string;
checked?: boolean;
disabled?: boolean;
errorMessage?: string;
size?: "sm" | "md";
labelText?: string;
supportingText?: string;
labelPosition?: "left" | "right";
}