import { FctAddress, FctValue, FctUinteger64, FctUinteger32Bps } from '../../../../Fct/generics'; import { ethers } from 'ethers'; export declare const Send: { 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?: ethers.providers.JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"cBridge", "ACTION", "send", "sendToken", { input: { to: FctAddress; methodParams: { receiver: FctAddress; token: FctAddress; amount: FctValue; dstChainId: FctUinteger64; nonce: FctUinteger64; maxSlippage: FctUinteger32Bps; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };