import { FctAddress, FctBoolean, FctBps, FctDecimals, FctValue } from '../../../../Fct/generics'; export declare const GetReserveConfigurationData: { 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", "getReserveConfigurationData", string | undefined, { input: { to: FctAddress; methodParams: { asset: FctAddress; }; }; output: { decimals: FctDecimals; ltv: FctBps; liquidationThreshold: FctBps; liquidationBonus: FctValue; reserveFactor: FctValue; usageAsCollateralEnabled: FctBoolean; borrowingEnabled: FctBoolean; stableBorrowRateEnabled: FctBoolean; isActive: FctBoolean; isFrozen: FctBoolean; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };