import React from "react"; export interface Props { url: string; text: string; variants?: string; classes?: string; onClick?: () => void; } export declare const HyperLink: (props: Props) => React.JSX.Element;