import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
declare type RadioShape = "square" | "round";
export interface RadioProps extends ViewProps {
    className?: string;
    name?: any;
    disabled?: boolean;
    shape?: RadioShape;
    icon?: ReactNode;
    size?: number;
    children?: ReactNode;
}
export default function Radio(props: RadioProps): JSX.Element;
export {};
