import { ClassName } from "@helpers/types"; import { InputHTMLAttributes, PropsWithChildren } from "react"; export type RadioCardSize = "sm" | "md"; export type RadioCardPosition = "left" | "right"; export interface RadioCardProps extends Omit, "size">, ClassName, PropsWithChildren { name: string; id: string; isRadioVisible?: boolean; checked?: boolean; disabled?: boolean; labelText: string; size?: RadioCardSize; description?: string; radioPosition?: RadioCardPosition; }