/** * AI Tool Detection - Detects which AI coding tools are in use */ import { type AIToolId, type DetectOptions } from "./types.js"; import { type EnvironmentConfig } from "../../../src/config/index.js"; export declare function detectAITools(options?: DetectOptions, env?: EnvironmentConfig): Promise; export declare function formatDetectionHint(detected: AIToolId[]): string; //# sourceMappingURL=detect.d.ts.map