import type { WithBlockchain } from "../../blockchains/index.js";
export type CollectionId = WithBlockchain & {
    __IS_COLLECTION_ID__: true;
};
export declare function toCollectionId(value: string): CollectionId;
