import { BigNumber, Contract } from "ethers";
export declare const listTokens: (contract: Contract) => Promise<BigNumber[]>;
export declare const listTokensOfOwner: (token: Contract, account: string) => Promise<BigNumber[]>;
export declare const listERC721OfOwners: (ERC721: Contract, account: string) => Promise<BigNumber[]>;
