import { NftEnumType } from '../../types/tokens.types'; export interface TokenAssets { description: string; status: string; svgUrl: string; website?: string; pngUrl?: string; social?: any; extraTokens?: string[]; lockedAccounts?: { [key: string]: string; }; } export interface TokenMediaType { url?: string; originalUrl?: string; thumbnailUrl?: string; fileType?: string; fileSize?: number; } export interface TokenOptionType { tokenLabel: string; tokenDecimals: number; tokenImageUrl: string; assets?: TokenAssets; type?: NftEnumType; error?: string; esdtPrice?: number; ticker?: string; identifier?: string; name?: string; } export declare function getPersistedTokenDetails({ tokenId }: { tokenId?: string; }): Promise;