import { ethers } from 'ethers'; import { FctAddress, FctValue } from '../../../../Fct/generics'; export declare const Deposit: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; depositToken: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: ethers.providers.JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"YEARN", "ACTION", "deposit", string | undefined, { input: { to: FctAddress; depositToken: FctAddress; methodParams: { amount: FctValue; recipient: FctAddress; }; }; output: { amount: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; depositToken: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };