/** * Splits a shell command string into argv-style tokens, honoring single quotes, * double quotes, and backslash escaping. Quote characters are removed so that * each token holds the literal value git would receive. This lets the caller * tell a flag in argv flag-position (e.g. `git commit "--no-verify"`) apart from * the same text appearing inside a quoted `-m`/`-F` value. * @param input - The raw command string. * @returns The list of argv tokens. */ export declare function tokenizeCommand(input: string): string[]; //# sourceMappingURL=tokenize-command.d.ts.map