import { ReactNode } from "react"; import { LinkComponentProps } from "./LinkComponentProvider"; export declare type TextLinkProps = { children?: ReactNode; } & LinkComponentProps; export declare const TextLink: import("react").ForwardRefExoticComponent<{ children?: ReactNode; } & LinkComponentProps & import("react").RefAttributes>;