import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { RemoteResponseResponseType } from "./RemoteResponseResponseType"; export declare const RemoteResponse: core.serialization.ObjectSchema; export declare namespace RemoteResponse { interface Raw { method: string; path: string; status: number; response?: unknown; response_headers?: Record | null; response_type?: RemoteResponseResponseType.Raw | null; headers?: Record | null; } }