import React from 'react'; import type { MetaChunk } from '@bundle-stats/utils/types/webpack'; import type { ReportMetricModuleRow } from '../../types'; interface ModuleInfoProps { item: ReportMetricModuleRow; chunks?: Array; chunkIds?: Array; labels: Array; metricLabel?: string; customComponentLink?: React.ElementType; onClose: () => void; } export declare const ModuleInfo: (props: ModuleInfoProps & React.ComponentProps<"div">) => React.JSX.Element; export {};