import { FctAddress, FctBoolean, FctValue, FctValue18, FctValueListN } from '../../../../Fct/generics/FctParams'; export declare const CalculateTokenAmount: { new (args: { chainId: import("../../../../Fct/generics/FctParams").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; amount1: string | import("../../corelibTypes").Variable | undefined; amount2: string | import("../../corelibTypes").Variable | undefined; amount3: string | import("../../corelibTypes").Variable | undefined; amount4: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"CURVE", "GETTER", "calc_token_amount", string | undefined, { input: { to: FctAddress; amount1: FctValue; amount2: FctValue; amount3: FctValue; amount4: FctValue; methodParams: { amounts: FctValueListN; isDeposit: FctBoolean; }; }; output: { expectedAmount: FctValue18; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; amount1: string | import("../../corelibTypes").Variable | undefined; amount2: string | import("../../corelibTypes").Variable | undefined; amount3: string | import("../../corelibTypes").Variable | undefined; amount4: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };