export declare const execaOutput: (cmg: string, arguments_: string[]) => string | undefined; /** * Two-step argument splitting function that first splits arguments in quotes, * and then splits up the remaining arguments if they are not part of a quote. */ export declare function splitArgsFromString(argumentsString: string | string[]): string[];