export declare const compactCommand: import("cleye").Command<{ name: "compact"; help: { description: string; }; flags: { 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"; }; }; }, { command: "compact"; } & import("type-flag").TypeFlag<{ 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; }> & { _: {}; 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=compact.d.ts.map