import type { ModelPresetName } from '../models'; export declare const sharedFlags: { readonly storePath: { readonly type: StringConstructor; readonly description: "Path to the embeddings store file"; readonly default: "./database.raptor"; readonly alias: "s"; }; readonly model: { readonly type: StringConstructor; readonly description: `Embedding model preset (${string})`; readonly default: "bge-small-en"; }; }; export declare const searchFlags: { readonly limit: { readonly type: NumberConstructor; readonly description: "Maximum number of results to return"; readonly default: 10; readonly alias: "l"; }; readonly minSimilarity: { readonly type: NumberConstructor; readonly description: "Minimum similarity threshold (0-1)"; readonly default: 0; readonly alias: "m"; }; }; export declare function modelFromFlag(value: string): ModelPresetName; //# sourceMappingURL=flags.d.ts.map