import * as React from 'react';
import type { CnRadioGroupProps } from './types';
import './cn-radio-group.scss';
export declare const CnRadioGroup: {
(props: CnRadioGroupProps): React.JSX.Element;
displayName: string;
defaultProps: {
size: string;
direction: string;
};
};