/** * Split a shell command string into an argument array. * Handles double-quoted strings, single-quoted strings, and backslash escapes. * * @example * shellSplit('echo hello world') // ['echo', 'hello', 'world'] * shellSplit('echo "hello world"') // ['echo', 'hello world'] * shellSplit('path/with\\ space') // ['path/with space'] */ export declare function shellSplit(input: string): string[]; //# sourceMappingURL=shell-split.d.ts.map