import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EnvironmentVariableValueResponseDto } from "./environmentvariablevalueresponsedto.js"; export declare const EnvironmentVariableResponseDtoType: { readonly String: "string"; }; export type EnvironmentVariableResponseDtoType = ClosedEnum; export type EnvironmentVariableResponseDto = { id: string; organizationId: string; key: string; type: EnvironmentVariableResponseDtoType; isSecret: boolean; values: Array; createdAt: string; updatedAt: string; }; /** @internal */ export declare const EnvironmentVariableResponseDtoType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EnvironmentVariableResponseDto$inboundSchema: z.ZodType; export declare function environmentVariableResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=environmentvariableresponsedto.d.ts.map