import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; import '../../../index.scss'; export interface HIDLinkProps extends HIDComponentProps { /**Tells the browser to open in a new window or current browser ,default:"_blank"*/ target?: '_blank' | '_self'; /**Specifies that the Link is un-clickable and unusable */ disabled?: false; /**Creates a link to another page */ href?: string; } export interface HIDLinkState { disabled: boolean; defaultTarget: string; defaultClassName: string; } export default class HIDLink extends React.Component { constructor(props: any); state: HIDLinkState; componentDidUpdate(prevProps: any): void; render(): JSX.Element; }