import React from 'react';
import './Link.scss';
interface LinkProps {
    children: string;
    disabled?: boolean;
    href: string;
    newTab?: boolean;
    small?: boolean;
}
export declare const Link: React.FC<LinkProps>;
export {};
