/** * Assistant auto-detection * Detects which AI coding assistant is being used in the workspace * Follows detection logic from distribution plan: workspace directories first, then global config files */ import { Assistant, AssistantConfig } from './types'; /** * Gets the configuration for a specific assistant * @param assistant - Assistant name * @returns AssistantConfig or null if not found */ export declare function getAssistantConfig(assistant: Assistant): AssistantConfig; /** * Detects the AI assistant being used in the current workspace * Checks workspace directories first, then global config files * Returns null if no assistant is detected (user will be prompted) */ export declare function detectAssistant(): Promise; //# sourceMappingURL=detector.d.ts.map