import React from 'react'; import { DOMProps, ControlProps, QAProps } from '../types'; export declare type RadioSize = 'm' | 'l'; export interface RadioProps extends ControlProps, DOMProps, QAProps { value: string; size?: RadioSize; content?: React.ReactNode; children?: React.ReactNode; title?: string; } export declare const Radio: React.ForwardRefExoticComponent>;