import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IntegrationsControllerAutoConfigureIntegrationRequest = { integrationId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type IntegrationsControllerAutoConfigureIntegrationResponse = { headers: { [k: string]: Array; }; result: components.AutoConfigureIntegrationResponseDto; }; /** @internal */ export type IntegrationsControllerAutoConfigureIntegrationRequest$Outbound = { integrationId: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const IntegrationsControllerAutoConfigureIntegrationRequest$outboundSchema: z.ZodType; export declare function integrationsControllerAutoConfigureIntegrationRequestToJSON(integrationsControllerAutoConfigureIntegrationRequest: IntegrationsControllerAutoConfigureIntegrationRequest): string; /** @internal */ export declare const IntegrationsControllerAutoConfigureIntegrationResponse$inboundSchema: z.ZodType; export declare function integrationsControllerAutoConfigureIntegrationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=integrationscontrollerautoconfigureintegration.d.ts.map