import React, { type HTMLAttributes, type ReactNode } from "react"; import { type BaseInputWrapperProps } from "./commons/input"; export interface BaseRadioProps { id?: string; checked?: boolean; value?: string | number; name?: string; disabled?: boolean; info?: ReactNode; className?: BaseInputWrapperProps["className"] & { radioInputWrapper?: string; }; } export type RadioProps = Omit, "type" | "className" | "id" | keyof BaseRadioProps> & Pick & BaseRadioProps; export declare const Radio: React.ForwardRefExoticComponent, "type" | keyof BaseRadioProps> & Pick & BaseRadioProps & React.RefAttributes>; //# sourceMappingURL=radio.d.ts.map