import { ChainObject } from "./ChainObject"; /** * Claims a collection name across all letter cases. Keyed by the normalized (lower-cased) * name, so "Mirandus", "mirandus" and "MIRANDUS" all resolve to a single reservation, while * `collection` preserves the exact casing the name was first claimed with. */ export declare class NftCollectionNameReservation extends ChainObject { static INDEX_KEY: string; normalizedName: string; collection: string; static normalize(collection: string): string; } //# sourceMappingURL=NftCollectionNameReservation.d.ts.map