import { ethers } from 'ethers'; import { FctAddress, FctValue18 } from '../../../../Fct/generics/FctParams'; export declare const Withdraw: { new (args: { chainId: import("../../../../Fct/generics/FctParams").ChainId; initParams?: Partial<{ to: 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", "burn", "unstake", { input: { to: FctAddress; methodParams: { amount: FctValue18; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };