import type { NftItem } from './NftItem';
export type NftItems = {
    nft_items: Array<NftItem>;
};
