import OraclePrice from '../models/OraclePrice'; import OraclePricePrediction from '../models/OraclePricePrediction'; import ResourceList from '../ResourceList'; import type Client from '../Client'; interface ListParams { cursor?: string; } export default class Oracle { private client; constructor(client: Client); getCurrentPrice(): Promise; listPrices(params?: ListParams): Promise>; getPriceAtBlock(height: number): Promise; getPredictedPrice(): Promise; } export {}; //# sourceMappingURL=Oracle.d.ts.map