export declare const search: import("cleye").Command<{ name: "search"; parameters: ""[]; flags: { limit: { readonly type: NumberConstructor; readonly description: "Maximum number of results to return"; readonly default: 10; readonly alias: "l"; }; minSimilarity: { readonly type: NumberConstructor; readonly description: "Minimum similarity threshold (0-1)"; readonly default: 0; readonly alias: "m"; }; storePath: { readonly type: StringConstructor; readonly description: "Path to the embeddings store file"; readonly default: "./database.raptor"; readonly alias: "s"; }; model: { readonly type: StringConstructor; readonly description: `Embedding model preset (${string})`; readonly default: "bge-small-en"; }; }; help: { description: string; examples: string[]; }; }, { command: "search"; } & import("type-flag").TypeFlag<{ limit: { readonly type: NumberConstructor; readonly description: "Maximum number of results to return"; readonly default: 10; readonly alias: "l"; }; minSimilarity: { readonly type: NumberConstructor; readonly description: "Minimum similarity threshold (0-1)"; readonly default: 0; readonly alias: "m"; }; storePath: { readonly type: StringConstructor; readonly description: "Path to the embeddings store file"; readonly default: "./database.raptor"; readonly alias: "s"; }; model: { readonly type: StringConstructor; readonly description: `Embedding model preset (${string})`; readonly default: "bge-small-en"; }; } & { help: BooleanConstructor; }> & { _: { query: string; }; showHelp: (options?: { version?: string; description?: string; usage?: false | string | string[]; examples?: string | string[]; render?: (nodes: { id?: string; type: keyof import("cleye").Renderers; data: any; }[], renderers: import("cleye").Renderers) => string; }) => void; showVersion: () => void; }>; //# sourceMappingURL=search.d.ts.map