import { ExchangeGraph, Item } from './item.model'; /** * Gets Grand Exchange items for specified Item ID. * @export * @param {number} itemId * @returns {Promise} */ export declare function getExchangeStats(itemId: number): Promise; /** * Returns Grand Exchange graph points for specified Item ID. * * @export * @param {number} itemId * @returns {Promise} */ export declare function getExchangeTrendGraph(itemId: number): Promise;