import { CacheInfo, ClearResult, CleanerModule, CacheCategory, CacheSelectionCriteria } from "../types"; /** * Google Antigravity IDE Cleaner * * Google Antigravity is an agentic AI IDE from Google, similar to Cursor/Windsurf. * This cleaner manages caches for extensions, workspace storage, logs, and AI model caches. */ export declare class AntigravityCleaner implements CleanerModule { name: string; type: "ide"; description: string; private getCachePaths; isAvailable(): Promise; getCacheInfo(): Promise; getCacheCategories(): Promise; clear(dryRun?: boolean, _criteria?: CacheSelectionCriteria, _cacheInfo?: CacheInfo, protectedPaths?: string[]): Promise; clearByCategory(categoryIds: string[], dryRun?: boolean, _cacheInfo?: CacheInfo, protectedPaths?: string[]): Promise; } declare const _default: AntigravityCleaner; export default _default; //# sourceMappingURL=antigravity.d.ts.map