import React from 'react'; export interface MyLinkProps { visible?: boolean; linkValue: string; download?: string; href: string; compFileId?: string; style: React.CSSProperties; onClick: any; className?: string; getEngineApis?: any; clickType?: 'open' | 'download'; } declare const Link: React.ForwardRefExoticComponent>; export default Link;