import React, { ReactNode } from "react";
export * from ".";
export type LinkProps = {
    href: string;
    className?: string;
    children: ReactNode;
    onClick?: (e: React.MouseEvent<HTMLAnchorElement>) => void;
};
export declare function Link({ href, className, children, onClick }: LinkProps): React.JSX.Element;
export declare function useTitle(title: string): void;
