export interface RoundData { roundId: bigint; price: bigint; timestamp: number; } export interface PriceFeed { price(): Promise; latestRound(): Promise; getRoundData(roundId: bigint): Promise; getHistoricalPrice(round: bigint): Promise; }