import { NamespaceId } from '../namespace'; import { MosaicId } from './MosaicId'; /** * Custom type for unresolved mosaicId */ export declare type UnresolvedMosaicId = (MosaicId | NamespaceId) & { /** * returns if the object is instance of NamespaceId. * It avoid the `instanceof` issue when the sdk lib is referenced from multiple modules */ isNamespaceId(): boolean; /** * returns if the object is instance of MosaicId. * It avoid the `instanceof` issue when the sdk lib is referenced from multiple modules */ isMosaicId(): boolean; };