import { FctAddress, FctValue, FctValue27, FctValue40 } from '../../../../Fct/generics'; export declare const GetAssetReserveData: { 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<"AAVE", "GETTER", "getReserveData", "getAssetReserveData", { input: { to: FctAddress; methodParams: { asset: FctAddress; }; }; output: { availableLiquidity: FctValue; totalStableDebt: FctValue; totalVariableDebt: FctValue; supplyRate: FctValue27; variableBorrowRate: FctValue27; stableBorrowRate: FctValue27; averageStableBorrowRate: FctValue; liquidityIndex: FctValue; variableBorrowIndex: FctValue; lastUpdateTimestamp: FctValue40; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };