import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type SignatureInput = { input: string; }; /** @internal */ export declare const SignatureInput$inboundSchema: z.ZodType; /** @internal */ export type SignatureInput$Outbound = { input: string; }; /** @internal */ export declare const SignatureInput$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 SignatureInput$ { /** @deprecated use `SignatureInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SignatureInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SignatureInput$Outbound` instead. */ type Outbound = SignatureInput$Outbound; } export declare function signatureInputToJSON(signatureInput: SignatureInput): string; export declare function signatureInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=signatureinput.d.ts.map