import { Field, UInt64 } from 'o1js'; import { NFTContract } from '../NFTsMapContract.js'; export declare function getAppState(zkAppInstance: NFTContract, live?: boolean): Promise<{ treeRoot: Field; totalSupply: UInt64; totalInited: Field; maxSupply: Field; }>; export declare function getTotalInitedLive(zkAppInstance: NFTContract, live?: boolean): Promise; export declare function getTotalSupplyLive(zkAppInstance: NFTContract, live?: boolean): Promise; export declare function getTreeRootString(zkAppInstance: NFTContract, live?: boolean): Promise;