import { Command } from "commander"; interface RecallOptions { tags?: string; limit?: string; format?: string; includeArchived?: boolean; noRerank?: boolean; topicId?: string; hook?: boolean; maxTokens?: string; hub?: string; } export declare function previewLines(text: string, limit: number): string[]; export declare function hasMorePreviewLines(text: string, limit: number): boolean; export declare function renderMarkdownFragment(text: string, options?: { indent?: string; maxLines?: number; }): string[]; export declare function recallCommand(query: string | undefined, options: RecallOptions): Promise; export declare function registerRecallCommand(program: Command): void; export {}; //# sourceMappingURL=recall.d.ts.map