import { ConflictError, ForbiddenError, NotFoundError } from "@gala-chain/api"; export declare class NftCollectionAuthorizationNotFoundError extends NotFoundError { constructor(collection: string); } export declare class UserNotAuthorizedForCollectionError extends ForbiddenError { constructor(user: string, collection: string); } export declare class CollectionNameAlreadyClaimedError extends ConflictError { constructor(requestedCollection: string, claimedCollection: string); } export declare class CollectionNameMismatchError extends ForbiddenError { constructor(requestedCollection: string, authorizedCollection: string); } //# sourceMappingURL=NftCollectionError.d.ts.map