import { FctAddress, FctBytesList, FctString, FctValue } from '../../../../Fct/generics'; export declare const ClosePositionMulticall: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; receiveToken: string | import("../../corelibTypes").Variable | undefined; position: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"GMX", "ACTION", "multicall", "closePositionMulticall", { input: { to: FctAddress; value: FctValue; receiveToken: FctAddress; position: FctString; methodParams: { data: FctBytesList; }; }; output: { results: FctBytesList; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; receiveToken: string | import("../../corelibTypes").Variable | undefined; position: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };