import type { ComponentProps } from "react";
import { RadioContent, RadioControl, RadioIndicator, RadioRoot } from "./radio";
export declare const Radio: (({ children, className, ...props }: import("./radio").RadioRootProps) => import("react/jsx-runtime").JSX.Element) & {
    Root: ({ children, className, ...props }: import("./radio").RadioRootProps) => import("react/jsx-runtime").JSX.Element;
    Control: ({ children, className, ...props }: import("./radio").RadioControlProps) => import("react/jsx-runtime").JSX.Element;
    Indicator: ({ children, className, ...props }: import("./radio").RadioIndicatorProps) => import("react/jsx-runtime").JSX.Element;
    Content: ({ children, className, ...props }: import("./radio").RadioContentProps) => import("react/jsx-runtime").JSX.Element;
};
export type Radio = {
    Props: ComponentProps<typeof RadioRoot>;
    RootProps: ComponentProps<typeof RadioRoot>;
    ControlProps: ComponentProps<typeof RadioControl>;
    IndicatorProps: ComponentProps<typeof RadioIndicator>;
    ContentProps: ComponentProps<typeof RadioContent>;
};
export { RadioContent, RadioControl, RadioIndicator, RadioRoot };
export type { RadioRootProps, RadioRootProps as RadioProps, RadioControlProps, RadioIndicatorProps, RadioContentProps, } from "./radio";
export { radioVariants } from "@heroui/styles";
export type { RadioVariants } from "@heroui/styles";
