import * as z from "zod/v3"; export type PazeCobrandItem = { /** * Product name of the cobrand card. Must match exactly with the card name from the network. */ name: string; /** * Whether benefits are offered for this cobrand card. */ benefitsOffered?: boolean | null | undefined; }; /** @internal */ export type PazeCobrandItem$Outbound = { name: string; benefitsOffered?: boolean | null | undefined; }; /** @internal */ export declare const PazeCobrandItem$outboundSchema: z.ZodType; export declare function pazeCobrandItemToJSON(pazeCobrandItem: PazeCobrandItem): string; //# sourceMappingURL=pazecobranditem.d.ts.map