///
import * as React from 'react';
export interface LinkProps extends React.HTMLAttributes {
/** URL the link points to */
href: string;
/** Content to be wrapped */
children: React.ReactNode;
}
export declare class Link extends React.Component {
render(): JSX.Element;
}