import { default as React } from 'react'; type LinkProps = React.HTMLProps & { newTab?: boolean; }; declare function Link({ href, disabled, newTab, children, className, onClick, target, rel, tabIndex, ...others }: LinkProps): React.JSX.Element; export default Link;