import React, { CSSProperties } from 'react'; export interface HyperlinkProps { data?: any; onClick: any; controllLineStyle?: CSSProperties | null; handleCellContent: (obj: any) => any; getFileName: (obj: any) => string; clickType?: string; } declare const Hyperlink: React.FC; export default Hyperlink;