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;
export interface IRadio {
    (props: RadioProps): React.ReactElement;
}
declare const Radio: IRadio;
export { Radio, };
//# sourceMappingURL=radio.d.ts.map