import * as z from "zod/v3"; export type WorldpayVapOptions = { /** * Overrides the default report group to pass to the Worldpay VAP API. */ reportGroup?: string | null | undefined; /** * Overrides the `orderId` passed to the Worldpay VAP API, which defaults to the Gr4vy transaction ID. */ orderId?: string | null | undefined; }; /** @internal */ export type WorldpayVapOptions$Outbound = { reportGroup?: string | null | undefined; orderId?: string | null | undefined; }; /** @internal */ export declare const WorldpayVapOptions$outboundSchema: z.ZodType; export declare function worldpayVapOptionsToJSON(worldpayVapOptions: WorldpayVapOptions): string; //# sourceMappingURL=worldpayvapoptions.d.ts.map