import React from 'react'; interface LinkProps extends React.AnchorHTMLAttributes { to: string; children: React.ReactNode; replace?: boolean; target?: string; outLink?: boolean; } export default function Link({ to, children, onClick, replace, target, outLink, ...props }: LinkProps): JSX.Element; export {};