import type { HTMLProps } from 'react'; export type TRadioSize = 'sm' | 'md' | 'lg'; export type TRadioLabelPosition = 'left' | 'right'; export type TRadioProps = { /** Set the Radio to have a 100% width */ block?: boolean; /** Set the Radio's input class names */ inputClassName?: string; /** Set the Radio's label */ label?: string; /** Set the Radio's label class names */ labelClassName?: string; /** Set the Radio's label position */ labelPosition?: TRadioLabelPosition; /** Set the Radio's size */ size?: TRadioSize; } & Omit, 'size'>;