import React from "react";
export declare type LinkProps = {
    className?: string;
    activeClassName?: string;
    children: React.ReactNode;
    to: string;
    href?: string;
    noBasePath?: boolean;
    ariaLabel?: string;
};
declare const Link: ({ to, href, className, children, activeClassName, noBasePath, ariaLabel, }: LinkProps) => JSX.Element;
export default Link;
