export interface IDistStats { bundleSize: number; totalFiles: number; totalFolders: number; totalSize: number; } /** * Gets the stats for the dist folder * @param basePath - the base path to the project * @returns the stats for the dist folder */ export declare function getDistStats(basePath: string): Promise;