/** * The general-purpose TextLink component. * This component extends the props of `` element. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a * It is rendered as an HTML tag matching the names passed to `as`, and can pass the HTML standard attributes of the specified HTML tag as is. */ export declare const TextLink: import("react").ForwardRefExoticComponent<{ children?: React.ReactNode; variant?: import("../../styled-system/recipes").TextLinkSlotRecipeVariant["variant"]; className?: string; customLinkComponent?: import("react").ElementType; showExternalIcon?: boolean; externalIconProps?: import("react").ComponentPropsWithoutRef<"svg">["aria-label"]; } & Omit, HTMLAnchorElement>, "ref"> & import("react").RefAttributes>;