import { FctAddress, FctValue, FctValue16 } from '../../../../Fct/generics'; export declare const Deposit: { 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", "ACTION", "deposit", string | undefined, { input: { to: FctAddress; methodParams: { asset: FctAddress; amount: FctValue; onBehalfOf: FctAddress; referralCode: FctValue16; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };