import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { RadioGroupDirection } from "./radio-group.shared";
export interface RadioGroupProps extends ViewProps {
    defaultValue?: any;
    value?: any;
    disabled?: boolean;
    direction?: RadioGroupDirection;
    size?: number;
    children?: ReactNode;
    onChange?(value: any): void;
}
declare function RadioGroup(props: RadioGroupProps): JSX.Element;
export default RadioGroup;
