import { FctAddress, FctBytes, FctValueList } from '../../../../Fct/generics'; export declare const SafeBatchTransferFrom: { 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<"ERC1155", "ACTION", "safeBatchTransferFrom", string | undefined, { input: { to: FctAddress; methodParams: { from: FctAddress; to: FctAddress; ids: FctValueList; amounts: FctValueList; data: FctBytes; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };