import React, { ComponentPropsWithoutRef } from 'react'; import { FormControlDescriptionLinkProps } from '../Form'; interface Props { label: React.ReactNode; description?: RadioDescription | string; } interface RadioDescription { text: string; link?: FormControlDescriptionLinkProps; } export type RadioProps = Props & ComponentPropsWithoutRef<'input'>; export declare const Radio: React.ForwardRefExoticComponent, HTMLInputElement>, "ref"> & React.RefAttributes>; export {}; //# sourceMappingURL=Radio.d.ts.map