import { TMarkets, QUALITIES_ENUM, TPrice } from "@albion-data/types"; import { AxiosResponse } from "axios"; export declare type TPriceParams = { itemList: string | string[]; locations?: TMarkets | TMarkets[]; qualities?: QUALITIES_ENUM | QUALITIES_ENUM[]; }; export declare function getPriceRaw(params: TPriceParams): Promise>; export declare function getPriceData(params: TPriceParams): Promise;