import { Address } from './ContractTypes'; export declare enum TestTokenId { Gold = 1, Silver = 2, Bronze = 3 } declare function getContractAddress(tokenName: string): Promise
; declare function publicMint(tokenName: string, toAddress: Address, tokenId: TestTokenId): Promise; declare function balanceOf(tokenName: string, address: Address, tokenId: TestTokenId): Promise; export declare const TestERC1155: { TestTokenId: typeof TestTokenId; getContractAddress: typeof getContractAddress; balanceOf: typeof balanceOf; publicMint: typeof publicMint; }; export {}; //# sourceMappingURL=TestGatingERC1155.d.ts.map