import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import styles from './Link.styles'; interface LinkProps extends WithStyles { /** The href of the link */ href?: string; /** The target of the link */ target?: string; /** Called when the link is clicked. */ onClick?: (e: React.MouseEvent) => any; /** The test id of the link */ testId?: string; } export declare const Link: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;