import { ByteString, SmartContractLib } from 'scrypt-ts'; import { int32 } from '../utils/txUtil'; export type CAT721State = { ownerAddr: ByteString; localId: int32; }; export declare class CAT721Proto extends SmartContractLib { static stateHash(_state: CAT721State): ByteString; static create(address: ByteString, localId: int32): CAT721State; static toByteString(tokenInfo: CAT721State): string; } //# sourceMappingURL=cat721Proto.d.ts.map