import React from 'react'; import { ITextProps } from '../Text'; declare type LinkProps = React.AnchorHTMLAttributes & React.AnchorHTMLAttributes & ITextProps & { as?: any; to?: string; }; export declare const Link: React.FC; export {};