import React from 'react'; import { LinkProps } from './types'; /** * Prensa | Link component * @description Link component is an abstraction for */ declare const Link: ({ children, color, display, href, height, path, radius, textDecoration, width, ...otherProps }: LinkProps) => React.JSX.Element; export default Link;