import type { AlchemyNFTMetadata } from './AlchemyNFTMetadata'; export declare type AlchemyGetNFTsForCollectionResponse = { /** * An offset used for pagination. Can be passed back as the "startToken" of a subsequent request to get the next page of results. Absent if there are no more results. */ nextToken?: string; /** * List of objects that represent NFTs stored under the queried contract address. */ nfts?: Array; };