import * as React from 'react';
import type { RadioGroupProps, StatefulRadioGroupProps } from './types';
declare const StatefulRadioGroup: {
    (props: StatefulRadioGroupProps & Omit<RadioGroupProps, keyof StatefulRadioGroupProps>): React.JSX.Element;
    displayName: string;
};
export default StatefulRadioGroup;
