import { type Response } from '../../Response';
import { type GenericObject } from '../../Types';
import { type ResponseAdaptorInterface } from '../ResponseAdaptorInterface';
export declare class NoopResponseAdaptor implements ResponseAdaptorInterface {
    adapt(response: Response): GenericObject;
}
