import type { GitCommand } from './git-command.js'; /** * Checks if the input contains a git command * @param input - The command string to scan for a git sub-command. * @returns The detected git sub-command, or null when none is found. */ export declare function detectGitCommand(input: string): GitCommand | null; //# sourceMappingURL=detect-git-command.d.ts.map