import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The updated configurations after auto-configuration */ export type Integration = {}; export type AutoConfigureIntegrationResponseDto = { /** * Indicates whether the auto-configuration was successful */ success: boolean; /** * Optional message describing the result or any errors that occurred */ message?: string | undefined; /** * The updated configurations after auto-configuration */ integration?: Integration | undefined; }; /** @internal */ export declare const Integration$inboundSchema: z.ZodType; export declare function integrationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AutoConfigureIntegrationResponseDto$inboundSchema: z.ZodType; export declare function autoConfigureIntegrationResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=autoconfigureintegrationresponsedto.d.ts.map