import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CryptSetup = { clientNonce?: string | undefined; key?: string | undefined; serverNonce?: string | undefined; }; /** @internal */ export declare const CryptSetup$inboundSchema: z.ZodType; export declare function cryptSetupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cryptsetup.d.ts.map