import { default as React } from 'react';
import { RadioGroupDirection, RadioGroupOption, RadioGroupPosition, RadioGroupShape } from './types';
export interface RadioGroupProps {
    value?: string | number;
    defaultValue?: string | number;
    labelPosition: RadioGroupPosition;
    direction: RadioGroupDirection;
    shape?: RadioGroupShape;
    disabled?: boolean;
    options: RadioGroupOption[];
    onChange: (value: string | number) => void;
}
export declare const RadioGroup: React.ForwardRefExoticComponent<Partial<RadioGroupProps> & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> & React.RefAttributes<unknown>>;
