import type { ComponentProps, ElementType } from 'react'; import React from 'react'; import type { WebpackChunk } from '@bundle-stats/utils'; import type { ReportMetricAssetRow } from '../../types'; interface AssetInfoProps { item: ReportMetricAssetRow; chunks?: Array; labels: Array; customComponentLink?: ElementType; onClose: () => void; } export declare const AssetInfo: (props: AssetInfoProps & ComponentProps<"div">) => React.JSX.Element; export {};