import { FctAddress, FctValue } from '../../../../Fct/generics'; export declare const TotalSupply: { 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<"ERC721", "GETTER", "totalSupply", string | undefined, { input: { to: FctAddress; methodParams: {}; }; output: { totalSupply: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };