export interface ClaudeCodeExecutableResolution { command: "claude" | "claude-code"; executablePath: string; } export interface ResolveClaudeCodeExecutableOptions { configuredPath?: string; env?: NodeJS.ProcessEnv; platform?: NodeJS.Platform; allowWindowsShellShims?: boolean; } export declare function resolveClaudeCodeExecutable({ configuredPath, env, platform, allowWindowsShellShims, }?: ResolveClaudeCodeExecutableOptions): ClaudeCodeExecutableResolution | null;