import { Collection } from '../../internal/base/index.js';
import { type IPriceResponse } from '../../types/index.js';
import { Price } from './price.js';
export declare class PriceCollection extends Collection<IPriceResponse, Price> {
    fromJson(data: IPriceResponse): Price;
}
