import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EnvironmentVariableValueResponseDto = { environmentId: string; /** * Value is masked (••••••••) for secret variables */ value: string; }; /** @internal */ export declare const EnvironmentVariableValueResponseDto$inboundSchema: z.ZodType; export declare function environmentVariableValueResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=environmentvariablevalueresponsedto.d.ts.map