/** * Memory clean subcommand. * * @module */ export declare const cleanCommand: import("citty").CommandDef<{ readonly "max-age-days": { readonly type: "string"; readonly description: "Max age in days for entries with no access (default: 180)"; readonly default: "180"; }; readonly "min-relevance": { readonly type: "string"; readonly description: "Minimum relevance to keep (high|medium|low, default: low)"; readonly default: "low"; }; readonly yes: { readonly type: "boolean"; readonly alias: ["y"]; readonly description: "Perform deletion (without this flag it's a dry-run)"; }; }>; //# sourceMappingURL=memory-clean.d.ts.map