/// import * as React from 'react'; export interface LinkProps extends React.HTMLAttributes { prefix?: string; href?: string; target?: string; type?: string; } export default class Link extends React.Component {}