import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type StackInputValueRequest = string | number | boolean | Array; /** @internal */ export declare const StackInputValueRequest$inboundSchema: z.ZodType; /** @internal */ export type StackInputValueRequest$Outbound = string | number | boolean | Array; /** @internal */ export declare const StackInputValueRequest$outboundSchema: z.ZodType; export declare function stackInputValueRequestToJSON(stackInputValueRequest: StackInputValueRequest): string; export declare function stackInputValueRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stackinputvaluerequest.d.ts.map