/** * Memory search subcommand. * * @module */ export declare const searchCommand: import("citty").CommandDef<{ readonly query: { readonly type: "positional"; readonly description: "Search query"; readonly required: true; }; readonly scope: { readonly type: "string"; readonly description: "Filter by scope (workspace|role|both)"; readonly default: "both"; }; readonly limit: { readonly type: "string"; readonly description: "Max results (default: 10)"; readonly default: "10"; }; }>; //# sourceMappingURL=memory-search.d.ts.map