import { Response, ResponseDefinition } from 'postman-collection'; import { SyncOptions } from '../../shared'; /** * Merges a single response from target with a corresponding response from current. * Returns the merged response definition. * @param {Response} targetResponse - Response from the target request * @param {Response } sourceResponse - Response from the source request * @param {SyncOptions} syncOptions - Options to control what should be synced * @returns {ResponseDefinition} Merged response definition */ export declare function mergeResponseData(targetResponse: Response, sourceResponse: Response, syncOptions: SyncOptions): ResponseDefinition; //# sourceMappingURL=ResponseMerger.d.ts.map