import type { VariantProps } from "class-variance-authority"; import * as React from "react"; declare const tagButtonVariants: (props?: ({ variant?: "default" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type TagButtonProps = React.ButtonHTMLAttributes & VariantProps & { asChild?: boolean; }; declare const TagButton: React.ForwardRefExoticComponent & VariantProps<(props?: ({ variant?: "default" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & { asChild?: boolean; } & React.RefAttributes>; export { TagButton, tagButtonVariants }; //# sourceMappingURL=TagButton.d.ts.map