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 EnvironmentsControllerGetEnvironmentTagsRequest = { /** * Environment internal ID (MongoDB ObjectId) or identifier */ environmentId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type EnvironmentsControllerGetEnvironmentTagsResponse = { headers: { [k: string]: Array; }; result: Array; }; /** @internal */ export type EnvironmentsControllerGetEnvironmentTagsRequest$Outbound = { environmentId: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const EnvironmentsControllerGetEnvironmentTagsRequest$outboundSchema: z.ZodType; export declare function environmentsControllerGetEnvironmentTagsRequestToJSON(environmentsControllerGetEnvironmentTagsRequest: EnvironmentsControllerGetEnvironmentTagsRequest): string; /** @internal */ export declare const EnvironmentsControllerGetEnvironmentTagsResponse$inboundSchema: z.ZodType; export declare function environmentsControllerGetEnvironmentTagsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=environmentscontrollergetenvironmenttags.d.ts.map