import { InputHTMLAttributes } from 'react'; export type RadioPrimitiveType = Omit, 'type' | 'prefix'> & { label: string; id?: string; }; declare const Radio: import("react").ForwardRefExoticComponent, "prefix" | "type"> & { label: string; id?: string; } & import("react").RefAttributes>; export default Radio;