import type { OpenInNewTab } from '../utils/common-types'; type TextLinkColors = 'default' | 'inherit'; type TextLinkProps = OpenInNewTab & { color?: TextLinkColors; underline?: boolean; }; declare const TextLink: import("../utils/polymorphism").PolymorphicComponent<"a", TextLinkProps, "obfuscateClassName">; export { TextLink }; export type { TextLinkProps };