import { HTMLProps, PropsWithChildren } from 'react'; import { ThemeColorVariables, ThemeFontVariants } from '@dreipol/t3-react-theme'; export type TextLinkProps = PropsWithChildren<{ /** * Custom color */ color?: ThemeColorVariables; /** * Text */ variant?: ThemeFontVariants; /** * Render as disabled */ disabled?: boolean; /** * Custom class */ className?: boolean; }> & Omit, 'color' | 'ref'>; export declare const TextLink: (props: { /** * Custom color */ color?: ThemeColorVariables | undefined; /** * Text */ variant?: keyof import("@dreipol/t3-react-theme").ThemeFontConfig | undefined; /** * Render as disabled */ disabled?: boolean | undefined; /** * Custom class */ className?: boolean | undefined; } & { children?: import("react").ReactNode; } & Omit, "color" | "ref"> & import("react").RefAttributes) => import("react").ReactElement> | null;