import type * as BasisTheory from "../../../../../api/index.js"; import * as core from "../../../../../core/index.js"; import type * as serializers from "../../../../index.js"; import { Application } from "../../../../types/Application.js"; import { ProxyTransform } from "../../../../types/ProxyTransform.js"; export declare const PatchProxyRequest: core.serialization.Schema; export declare namespace PatchProxyRequest { interface Raw { name?: string | null; destination_url?: string | null; request_transform?: ProxyTransform.Raw | null; response_transform?: ProxyTransform.Raw | null; request_transforms?: ProxyTransform.Raw[] | null; response_transforms?: ProxyTransform.Raw[] | null; application?: Application.Raw | null; configuration?: Record | null; require_auth?: boolean | null; disable_detokenization?: boolean | null; } }