export declare const getPrice: (coinType: string) => Promise; export declare const getHistoryPrice: (coinType: string, interval: string, timeFromS: number, timeToS: number) => Promise<{ timestampS: number; priceUsd: number; }[] | undefined>;