import * as LabelPrimitive from "@radix-ui/react-label"; import { type VariantProps } from "class-variance-authority"; import * as React from "react"; declare const labelVariants: (props?: ({ variant?: "default" | "muted" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface LabelProps extends React.ComponentPropsWithoutRef, VariantProps { isMuted?: boolean; } declare const Label: React.ForwardRefExoticComponent>; export { Label, labelVariants }; //# sourceMappingURL=Label.d.ts.map