import { Address } from './ContractTypes'; export declare class TestGatingNFT { publicMint(toAddress: string): Promise; } declare function getContractAddress(nftName: string): Promise
; export declare function getTestGatingNFTContractAddress(): Promise
; declare function publicMint(nftName: string, toAddress: Address): Promise; declare function burn(nftName: string, tokenId: number): Promise; declare function balanceOf(nftName: string, address: Address): Promise; export declare const TestERC721: { publicMint: typeof publicMint; burn: typeof burn; balanceOf: typeof balanceOf; getContractAddress: typeof getContractAddress; }; export {}; //# sourceMappingURL=TestGatingNFT.d.ts.map