import { FctAddress, FctInteger128, FctValue, FctValue18 } from '../../../../Fct/generics/FctParams'; export declare const CalculateWithdrawOneCoin: { new (args: { chainId: import("../../../../Fct/generics/FctParams").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<"CURVE", "GETTER", "calc_withdraw_one_coin", string | undefined, { input: { to: FctAddress; methodParams: { tokenAmount: FctValue; indexOfCoin: FctInteger128; }; }; output: { amount: FctValue18; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };