import { BaseCleaner } from "./BaseCleaner"; import { CacheInfo, CacheCategory, CacheType } from "../types"; export declare class GoBuildCleaner extends BaseCleaner { name: string; type: CacheType; description: string; private getCachePaths; isAvailable(): Promise; getCacheInfo(): Promise; getCacheCategories(): Promise; /** * Clear cache with Go's built-in command when possible */ clear(dryRun?: boolean, criteria?: any, cacheInfo?: CacheInfo, protectedPaths?: string[]): Promise; } declare const _default: GoBuildCleaner; export default _default; //# sourceMappingURL=goBuild.d.ts.map