import { type IDiscountResponse } from '../../types/index.js'; import { Collection } from '../../internal/base/index.js'; import { Discount } from './discount.js'; export declare class DiscountCollection extends Collection { fromJson(data: IDiscountResponse): Discount; }