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 UpdateProxyRequest: core.serialization.Schema; export declare namespace UpdateProxyRequest { interface Raw { name: string; destination_url: string; request_reactor_id?: string | null; response_reactor_id?: 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; } }