export interface ComponentStorageItem { id: string; label: string; /** Absolute path to the component's storage location */ path: string; bytes: number; } export interface StorageResult { items: ComponentStorageItem[]; /** Items sorted descending by bytes (zero-byte items excluded) */ hogs: ComponentStorageItem[]; totalBytes: number; } export declare function computeStorage(dataDir: string): Promise; //# sourceMappingURL=compute-storage.d.ts.map