/** * When querying a Viya job using the Web approach with _DEBUG=128 (used when * runAsTask is true), the webout JSON is inlined into the response via: * var blob = new Blob([`{...}`], {type: 'application/json'}); * On abort/error paths the same shape is used but with text/plain and * weboutBEGIN/END markers around the JSON: * var blob = new Blob([`>>weboutBEGIN<<\n{...}\n>>weboutEND<<\n`], {type: 'text/plain'}); * No follow-up request is needed — extract and parse the JSON directly. */ export declare const parseSasViyaLogDebugResponse: (response: any) => Promise;