import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SapientError } from "./sapienterror.js"; import { SapientRegistrationAck } from "./sapientregistrationack.js"; export type Sapient = { error?: SapientError | undefined; payload?: string | undefined; registrationAck?: SapientRegistrationAck | undefined; unknown?: string | undefined; }; /** @internal */ export declare const Sapient$inboundSchema: z.ZodType; export declare function sapientFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sapient.d.ts.map