import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CouponResponse } from "./coupon-response.js"; import { PaginationResponse } from "./pagination-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type ListCouponsResponse = { items?: Array | undefined; pagination?: PaginationResponse | undefined; }; /** @internal */ export declare const ListCouponsResponse$inboundSchema: z.ZodMiniType; export declare function listCouponsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=list-coupons-response.d.ts.map