import React from 'react'; import PropTypes from 'prop-types'; declare const Link: { ({ children, href, newTab, download, className, title, fontWeight, }: { children: any; href: any; newTab: any; download: any; className: any; title: any; fontWeight: any; }): React.JSX.Element; propTypes: { children: PropTypes.Validator>; href: PropTypes.Validator; newTab: PropTypes.Requireable; download: PropTypes.Requireable>; className: PropTypes.Requireable; title: PropTypes.Requireable; fontWeight: PropTypes.Requireable; }; defaultProps: { newTab: boolean; download: boolean; className: undefined; title: string; fontWeight: number; }; }; export default Link; //# sourceMappingURL=Link.d.ts.map