import type { ComponentProps } from "react";
import { LabelRoot } from "./label";
export declare const Label: (({ children, className, isDisabled, isInvalid, isRequired, ...rest }: import("./label").LabelRootProps) => import("react/jsx-runtime").JSX.Element) & {
    Root: ({ children, className, isDisabled, isInvalid, isRequired, ...rest }: import("./label").LabelRootProps) => import("react/jsx-runtime").JSX.Element;
};
export type Label = {
    Props: ComponentProps<typeof LabelRoot>;
    RootProps: ComponentProps<typeof LabelRoot>;
};
export { LabelRoot };
export type { LabelRootProps, LabelRootProps as LabelProps } from "./label";
export { labelVariants } from "@heroui/styles";
export type { LabelVariants } from "@heroui/styles";
