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