import { Plugin } from 'rollup'; export declare type DependencyStats = { size: number; gzip: number; brotli?: number; delta?: number; }; declare type DependencyStatsMap = { [filePath: string]: DependencyStats; }; declare type DependencyType = 'direct' | 'common'; export declare type DependencyStatsOutput = Record; export declare function rollupPluginDependencyStats(cb: (dependencyInfo: DependencyStatsOutput) => void): Plugin; export {};