import type { LLMConfig } from './types'; /** * Prompts user to configure their LLM provider * Returns a complete LLMConfig object */ export declare function promptForLLMConfig(): Promise; /** * Check if LLM configuration is valid and complete in the config file * Note: Does NOT check environment variables - we want explicit config */ export declare function isLLMConfigured(config: LLMConfig | undefined): boolean; //# sourceMappingURL=llm-setup.d.ts.map