import React from 'react';
import type { TypographyTextProps } from '../Typography';
import type { RadioProps as DefaultRadioProps } from 'antd';
type CondoRadioProps = {
    label?: React.ReactNode;
    labelProps?: TypographyTextProps;
    icon?: React.ReactNode;
};
export type RadioProps = Pick<DefaultRadioProps, 'autoFocus' | 'defaultChecked' | 'disabled' | 'onChange' | 'checked' | 'value' | 'children' | 'id'> & CondoRadioProps;
declare const Radio: React.FC<RadioProps>;
export { Radio, };
//# sourceMappingURL=radio.d.ts.map