import React from "react"; import { IconBaseProps } from "react-icons"; type RadioProps = Omit, "onChange" | "onClick"> & { name?: string; onChange?: (e: React.ChangeEvent) => void; onClick?: (e: React.MouseEvent) => void; value?: string; checked?: boolean; label?: string; inputProps?: React.InputHTMLAttributes; radioIconContainerProps?: React.ButtonHTMLAttributes; radioIconProps?: IconBaseProps; labelProps?: React.LabelHTMLAttributes; disabled?: boolean; labelPosition?: "left" | "right"; }; export default function Radio({ label, inputProps, radioIconContainerProps, radioIconProps, labelProps, name, onChange, onClick, value, checked, disabled, labelPosition, ...props }: RadioProps): React.JSX.Element; export {};