import { Network } from '@mintbase-js/sdk'; import { NftTokensAggregate } from '../../graphql/codegen/graphql'; import { ParsedDataReturn } from '../../types'; export type TokenListingCounts = { totalTokensCount: number; simpleListingCount: number; auctionListingsCount: number; totalListingsCount: number; displayTotalListings: number; }; export type TokenListingQueryResults = { tokensCount: NftTokensAggregate; simpleListingsCount: NftTokensAggregate; auctionListingsCount: NftTokensAggregate; }; export declare const tokenListingCountsByMetaId: (metadataId: string, network?: Network) => Promise>; //# sourceMappingURL=tokenListingCountsByMetaId.d.ts.map