export interface LocalArtifactCapacitySnapshot { availableBytes: bigint; totalBytes: bigint; } export interface LocalArtifactCapacityProbe { inspect(root: string): Promise; } export interface LocalArtifactCapacitySource { inspect(): Promise; }