import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type QRCode = { /** * A base64-encoded PNG image of the QR code. */ qrCode: string; }; /** @internal */ export declare const QRCode$inboundSchema: z.ZodType; /** @internal */ export type QRCode$Outbound = { qrCode: string; }; /** @internal */ export declare const QRCode$outboundSchema: z.ZodType; export declare function qrCodeToJSON(qrCode: QRCode): string; export declare function qrCodeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=qrcode.d.ts.map