import React from 'react';
import { RadioGroup } from '../radiogroup/radiogroup';
import { WebRadioProps } from "../../types";
export type { RadioShape, WebRadioProps as RadioProps } from "../../types";
type CompoundedComponent = React.FC<Partial<WebRadioProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'>> & {
    Group: typeof RadioGroup;
};
declare const InnerRadio: CompoundedComponent;
export default InnerRadio;
