import { FctAddress, FctBytes, FctValue } from '../../../../Fct/generics'; export declare const SwapOnZeroXv4: { 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<"PARASWAP", "ACTION", "swapOnZeroXv4", string | undefined, { input: { to: FctAddress; methodParams: { fromToken: FctAddress; toToken: FctAddress; fromAmount: FctValue; amountOutMin: FctValue; exchange: FctAddress; payload: FctBytes; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };