import React from 'react'; interface TextLinkProps { href?: string; className?: string; style?: React.CSSProperties; } declare const TextLink: React.FC; export default TextLink;