import { FctAddress, FctBoolean } from '../../../../Fct/generics'; export declare const IsApprovedForAll: { 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", "GETTER", "isApprovedForAll", string | undefined, { input: { to: FctAddress; methodParams: { account: FctAddress; operator: FctAddress; }; }; output: { isApproved: FctBoolean; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };