import { FctAddress, FctBps, FctValue } from '../../../../Fct/generics'; export declare const GetUserAccountData: { 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<"AaveV3", "GETTER", "getUserAccountData", string | undefined, { input: { to: FctAddress; methodParams: { user: FctAddress; }; }; output: { totalCollateralBase: FctValue; totalDebtBase: FctValue; availableBorrowsBase: FctValue; currentLiquidationThreshold: FctBps; ltv: FctBps; healthFactor: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };