import type { LLMProvider } from '../../integrations/cloud/llm/types.js'; export interface ExtrasChoices extends Record { engine?: 'v1' | 'searxng'; rssFeeds?: string[]; llmEndpoint?: string; /** Chosen LLM provider id. The API key is NEVER stored here — it goes to the keychain. */ llmProvider?: LLMProvider; } export declare function promptExtras(dataDir: string): Promise; //# sourceMappingURL=extras-prompt.d.ts.map