import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const textLinkVariants: (props?: ({ size?: "sm" | "lg" | "md" | null | undefined; variant?: "primary" | "secondary" | "hyperlink" | "disable" | null | undefined; weight?: "bold" | "regular" | null | undefined; isLoading?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface TextLinkProps extends VariantProps, React.ButtonHTMLAttributes { asChild?: boolean; rootClassName?: string; } export declare function TextLink({ variant, size, className, asChild, weight, isLoading, rootClassName, ...props }: TextLinkProps): import("react/jsx-runtime").JSX.Element; export {};