import { ComponentProps, PropsWithChildren } from 'react'; import { TMediumSizes, TLeftOrRight } from '../../../../types.ts'; export interface IRadio extends Omit, "placeholder" | "size" | "ref"> { className?: string; classNameInfo?: string; classNameLabel?: string; hasInfo?: boolean; onChange?: (e: React.ChangeEvent) => void; size?: TMediumSizes; radioButtonPosition?: TLeftOrRight; } export declare const RadioButton: ({ children, className, classNameInfo, classNameLabel, defaultChecked, disabled, hasInfo, id, onChange, size, value, radioButtonPosition, ...otherProps }: PropsWithChildren) => import("react").JSX.Element; export default RadioButton;