import { FctAddress, FctValue, FctValue24, FctValue160 } from '../../../../Fct/generics'; export declare const ExactInputSingleSwapRouter02: { 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<"UNISWAP_V3", "ACTION", "exactInputSingle", "snipper_swap_router_02", { input: { to: FctAddress; methodParams: { params_tuple: { tokenIn: FctAddress; tokenOut: FctAddress; fee: FctValue24; recipient: FctAddress; amountIn: FctValue; amountOutMinimum: FctValue; sqrtPriceLimitX96: FctValue160; }; }; }; output: { amountOut: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };