export declare const UNKNOWN_AGENT_NAME = "unknown"; export type DetectedAgentName = "claude-code" | "cline" | "codex" | "factory-droid" | "pi" | "ambiguous" | typeof UNKNOWN_AGENT_NAME; /** * Best-effort detection from environment markers set by coding-agent products. * These markers are not an authentication boundary: callers can spoof or inherit them. */ export declare function detectAgent(env?: NodeJS.ProcessEnv): DetectedAgentName; //# sourceMappingURL=detect-agent.d.ts.map