import { FC, MouseEvent } from 'react';
export interface TextLinkProps {
/**
* Custom class to be passed to the link.
*/
className?: string;
/**
* Font color for text link.
*/
variant?: 'primary' | 'danger';
/**
* Target URL
*/
href?: string;
/**
* Prop reserved for when component is wrapped by `` from react-router.
*/
navigate?: () => void;
/**
* Custom onClick -- Typically not necessary in an anchor but used by react-router when
* wrapping with a Link component.
*/
onClick?: (event: MouseEvent) => void;
/**
* HTML element tab index (defaults to 0)
*/
tabIndex?: number;
/**
* HTML target property
*/
target?: string;
/**
* Additional props to be spread to rendered element
*/
[x: string]: any;
}
export declare const TextLink: FC;