import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { EnvironmentVariableValueDto, EnvironmentVariableValueDto$Outbound } from "./environmentvariablevaluedto.js"; /** * The type of the variable */ export declare const UpdateEnvironmentVariableRequestDtoType: { readonly String: "string"; }; /** * The type of the variable */ export type UpdateEnvironmentVariableRequestDtoType = ClosedEnum; export type UpdateEnvironmentVariableRequestDto = { /** * Unique key for the variable. Must start with a letter and contain only letters, digits, and underscores. */ key?: string | undefined; /** * The type of the variable */ type?: UpdateEnvironmentVariableRequestDtoType | undefined; isSecret?: boolean | undefined; values?: Array | undefined; }; /** @internal */ export declare const UpdateEnvironmentVariableRequestDtoType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type UpdateEnvironmentVariableRequestDto$Outbound = { key?: string | undefined; type?: string | undefined; isSecret?: boolean | undefined; values?: Array | undefined; }; /** @internal */ export declare const UpdateEnvironmentVariableRequestDto$outboundSchema: z.ZodType; export declare function updateEnvironmentVariableRequestDtoToJSON(updateEnvironmentVariableRequestDto: UpdateEnvironmentVariableRequestDto): string; //# sourceMappingURL=updateenvironmentvariablerequestdto.d.ts.map