import { TooltipProps } from '@material-ui/core'; import { ReactNode } from 'react'; type TextLinkProps = { /** * Component's content */ children: ReactNode; href: string; className?: string; color?: string; target?: '_self' | '_blank'; disabled?: boolean; showTooltip?: boolean; /** * Uses `href` if empty */ tooltipText?: string; TooltipProps?: Omit & { title?: TooltipProps['title']; }; }; declare const TextLink: ({ children, href, TooltipProps, className, color, target, disabled, showTooltip, tooltipText, ...LinkProps }: TextLinkProps) => JSX.Element; export default TextLink; //# sourceMappingURL=index.d.ts.map