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