import { FctAddress, FctInt256, FctTimestamp, FctUInt80 } from '../../../../Fct/generics'; export declare const LatestRoundData: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"CHAINLINK", "ORACLE", "latestRoundData", "priceFeeds", { input: { to: FctAddress; methodParams: {}; }; output: { roundId: FctUInt80; price: FctInt256; startedAt: FctTimestamp; updatedAt: FctTimestamp; answeredInRound: FctUInt80; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };