import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const EncryptedStackInputValueKind: { readonly String: "string"; readonly Secret: "secret"; readonly Number: "number"; readonly Integer: "integer"; readonly Boolean: "boolean"; readonly Enum: "enum"; readonly StringList: "stringList"; }; export type EncryptedStackInputValueKind = ClosedEnum; export type EncryptedStackInputValue = { /** * Encrypted JSON-encoded input value. */ value: string; kind: EncryptedStackInputValueKind; /** * Whether the original input is secret. */ secret: boolean; }; /** @internal */ export declare const EncryptedStackInputValueKind$inboundSchema: z.ZodEnum; /** @internal */ export declare const EncryptedStackInputValue$inboundSchema: z.ZodType; export declare function encryptedStackInputValueFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=encryptedstackinputvalue.d.ts.map