/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ import { shouldDump } from './dumpContext.js'; /** * Dumps SDK-level request/response data by synthesizing HTTP-like structure * This captures the actual SDK parameters and responses, which is more useful * for debugging than raw HTTP dumps. */ export declare function dumpSDKContext(providerName: string, endpoint: string, requestParams: unknown, response: unknown, isError: boolean, baseURL?: string): Promise; export { shouldDump as shouldDumpSDKContext };