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<IDiscountResponse, Discount> {
    fromJson(data: IDiscountResponse): Discount;
}
