import type * as xrpl from '@interc0der/xrpl';
export type NFTItem = {
    uri?: string;
    img?: string;
    meta?: undefined;
    issuer?: string;
    id?: string;
    taxon?: number;
    metrics: {
        xrpl?: {
            flags: xrpl.AccountNFToken['Flags'];
            transferFee: number;
        };
        evm?: {};
    };
};
//# sourceMappingURL=nft.d.ts.map