import type { LabflowLlm } from "../ai/types.js"; import type { GitlabClient } from "../gitlab/client.js"; import { type SearchScope } from "../gitlab/search.js"; export declare function aiSearchMentionBundle(client: GitlabClient, llm: LabflowLlm, projectId: string | number, scope: SearchScope, search: string, options?: { model?: string; maxPromptChars?: number; }): Promise;