import React from "react";
export interface LinkProps {
    href: string;
    label: string;
}
export declare const Link: React.FC<LinkProps>;
