type IPrice = {
    coin: string;
    avg: number;
    currency: string;
};

declare const ExchangeInfo: {
    getQTZPrice: (dontUseCORSProxy?: boolean | undefined) => Promise<IPrice>;
    getUNQPrice: () => Promise<IPrice>;
};

export { ExchangeInfo, type IPrice, ExchangeInfo as default };
