import React, { ElementType } from 'react'; import type { ReportMetricAssetRow } from '../../types'; export type AssetNameProps = { className?: string; row: ReportMetricAssetRow; EntryComponentLink: ElementType; }; export declare const AssetName: (props: AssetNameProps) => React.JSX.Element;