import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type X11 = { refusalReason?: string | undefined; requiresAuthentication?: boolean | undefined; vendor?: string | undefined; version?: string | undefined; }; /** @internal */ export declare const X11$inboundSchema: z.ZodType; export declare function x11FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=x11.d.ts.map