import { FctAddress, FctUinteger32Bps, FctUinteger64, FctValue } from '../../../../Fct/generics'; export declare const SendNative: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"cBridge", "ACTION", "sendNative", "sendETH", { input: { to: FctAddress; value: FctValue; methodParams: { receiver: FctAddress; amount: FctValue; dstChainId: FctUinteger64; nonce: FctUinteger64; maxSlippage: FctUinteger32Bps; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };