/// declare type Option = { value: string; label: string; }; interface Props { name: string; label?: string; direction?: 'row' | 'column'; options: Option[]; } declare type RadioProps = JSX.IntrinsicElements['input'] & Props; export declare function Radio({ name, label, direction, disabled, options, }: RadioProps): JSX.Element; export {};