import * as z from "zod"; import { Result as SafeParseResult } from "../../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Arbitrary JSON used within your policies by accessing `input` */ export type Input = boolean | string | number | Array | { [k: string]: any; }; /** @internal */ export declare const Input$inboundSchema: z.ZodType; /** @internal */ export type Input$Outbound = boolean | string | number | Array | { [k: string]: any; }; /** @internal */ export declare const Input$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Input$ { /** @deprecated use `Input$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Input$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Input$Outbound` instead. */ type Outbound = Input$Outbound; } export declare function inputToJSON(input: Input): string; export declare function inputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=input.d.ts.map