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