import { TGold } from "@albion-data/types"; import { AxiosResponse } from "axios"; export declare type TGoldParams = { startDate?: Date | string; endDate?: Date | string; count?: number; }; export declare function getGoldRaw(params?: TGoldParams): Promise>; export declare function getGoldData(params: TGoldParams): Promise;