import { FctAddress, FctDecimals, FctValue } from '../../../../Fct/generics'; export declare const Add: { 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<"TOKEN_MATH", "CALCULATOR", "add", string | undefined, { input: { to: FctAddress; methodParams: { amount1: FctValue; decimals1: FctDecimals; amount2: FctValue; decimals2: FctDecimals; decimalsOut: FctDecimals; }; }; output: { result: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };