import React from 'react'; import { ControlGroupOption, ControlGroupProps, DOMProps, QAProps } from '../types'; export declare type RadioButtonOption = ControlGroupOption; export declare type RadioButtonSize = 's' | 'm' | 'l' | 'xl'; export interface RadioButtonProps extends ControlGroupProps, DOMProps, QAProps { size?: RadioButtonSize; width?: 'auto' | 'max'; children?: React.ReactElement | React.ReactElement[]; } interface RadioButtonComponent extends React.ForwardRefExoticComponent> { Option: React.ComponentType; } export declare const RadioButton: RadioButtonComponent; export {};