import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; export declare const buttonLinkVariants: (props?: ({ size?: "sm" | "md" | null | undefined; variant?: "primary" | "secondary" | "hyperlink" | "disable" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface ButtonLinkProps extends VariantProps, React.ButtonHTMLAttributes { asChild?: boolean; } /** * @deprecated new version and move to TextLink * */ export declare function ButtonLink({ variant, size, className, asChild, ...props }: ButtonLinkProps): import("react/jsx-runtime").JSX.Element;