import type { FC, HTMLAttributes, Ref } from 'react'; import type { VariantProps } from 'class-variance-authority'; import { dropdownMenuLabelVariants } from './classes'; type DropdownMenuLabelVariantsProps = VariantProps; export type DropdownMenuLabelProps = HTMLAttributes & DropdownMenuLabelVariantsProps & { ref?: Ref; }; export declare const DropdownMenuLabel: FC; export {};