import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PaymentOptionContextApprovalUI } from "./paymentoptioncontextapprovalui.js"; export type Two = boolean | any; export type RequiredFields = boolean | { [k: string]: boolean | any; }; export type PaymentOptionContext = { approvalUi?: PaymentOptionContextApprovalUI | null | undefined; requiredFields?: { [k: string]: boolean | { [k: string]: boolean | any; }; } | null | undefined; redirectRequiresPopup: boolean; requiresTokenizedRedirectPopup: boolean; }; /** @internal */ export declare const Two$inboundSchema: z.ZodType; export declare function twoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RequiredFields$inboundSchema: z.ZodType; export declare function requiredFieldsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PaymentOptionContext$inboundSchema: z.ZodType; export declare function paymentOptionContextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentoptioncontext.d.ts.map