import { FctAddress, FctBytes, FctValue, FctValue24, FctValue160 } from '../../../../Fct/generics'; import { Variable } from '../../../../Fct/plugins/corelibTypes'; export declare const SwapToRocketEth: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | Variable | undefined; tokenIn: string | Variable | undefined; amountIn: string | Variable | undefined; tokenOut: string | Variable | undefined; amountOut: string | Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"ROCKETPOOL", "ACTION", "exactInput" | "exactInputSingle", "swapToRocketEth", { input: { to: FctAddress; tokenIn: FctAddress; amountIn: FctValue; tokenOut: FctAddress; amountOut: FctValue; methodParams: { params_tuple: { tokenIn: FctAddress; tokenOut: FctAddress; fee: FctValue24; path: FctBytes; recipient: FctAddress; deadline: FctValue; amountIn: FctValue; amountOutMinimum: FctValue; sqrtPriceLimitX96: FctValue160; }; }; }; output: { amountOut: FctValue; }; }, Partial<{ to: string | Variable | undefined; tokenIn: string | Variable | undefined; amountIn: string | Variable | undefined; tokenOut: string | Variable | undefined; amountOut: string | Variable | undefined; methodParams: unknown; }>>; };