import React from 'react'; import * as styles from './styles.css'; type Props = React.PropsWithChildren & styles.Variants & { href: string; target?: '_blank'; rel?: 'noreferrer'; }; export declare const TextLink: React.FC; export {};