/** * Shell-quote an argument for safe interpolation into a shell command string. * Safe characters (alphanumeric, `.`, `_`, `-`, `/`, `=`, `:`, `@`) pass through. * Everything else is wrapped in single quotes with embedded quotes escaped. */ export declare function shellQuote(arg: string): string; //# sourceMappingURL=utils.d.ts.map