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 IntegrationsControllerListIntegrationsRequest = { /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type IntegrationsControllerListIntegrationsResponse = { headers: { [k: string]: Array; }; result: Array; }; /** @internal */ export type IntegrationsControllerListIntegrationsRequest$Outbound = { "idempotency-key"?: string | undefined; }; /** @internal */ export declare const IntegrationsControllerListIntegrationsRequest$outboundSchema: z.ZodType; export declare function integrationsControllerListIntegrationsRequestToJSON(integrationsControllerListIntegrationsRequest: IntegrationsControllerListIntegrationsRequest): string; /** @internal */ export declare const IntegrationsControllerListIntegrationsResponse$inboundSchema: z.ZodType; export declare function integrationsControllerListIntegrationsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=integrationscontrollerlistintegrations.d.ts.map