import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type SupportedCloudRegions = { /** * AWS regions supported by this Alien environment. */ aws: Array; /** * GCP regions supported by this Alien environment. */ gcp: Array; /** * Azure locations supported by this Alien environment. */ azure: Array; }; /** @internal */ export declare const SupportedCloudRegions$inboundSchema: z.ZodType; export declare function supportedCloudRegionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=supportedcloudregions.d.ts.map