import { CleanerModule, CacheInfo, ClearResult, CacheSelectionCriteria } from "../types"; /** * ShipIt Cleaner - Cleans ShipIt update caches used by various applications * * ShipIt is macOS's update mechanism used by apps like Google Chrome, Atom, * and other Sparkle/Squirrel-based updaters. These caches store downloaded * updates and can accumulate significant disk space. */ declare class ShipItCleaner implements CleanerModule { name: string; type: "system"; description: string; private readonly knownShipItPatterns; private getShipItCachePaths; isAvailable(): Promise; getCacheInfo(): Promise; clear(dryRun?: boolean, _criteria?: CacheSelectionCriteria, cacheInfo?: CacheInfo, protectedPaths?: string[]): Promise; } declare const _default: ShipItCleaner; export default _default; //# sourceMappingURL=shipit.d.ts.map