import { RequestClient } from '../request/RequestClient'; /** * When querying a Viya job using the Web approach (as opposed to using the APIs) with _DEBUG enabled, * the first response contains the log with the content in an iframe. Therefore when debug is enabled, * and the serverType is VIYA, and useComputeApi is null (WEB), we call this function to extract the * (_webout) content from the iframe. * @param response - first response from viya job * @param requestClient * @param serverUrl * @returns */ export declare const parseSasViyaDebugResponse: (response: string, requestClient: RequestClient, serverUrl: string) => Promise;