import type { ChatBadgeVersionData } from './ChatBadgeVersion'; import { ChatBadgeVersion } from './ChatBadgeVersion'; /** @private */ export interface ChatBadgeSetData { versions: Record; } /** * A set of badges. */ export declare class ChatBadgeSet { private readonly _data; /** @private */ constructor(data: ChatBadgeSetData); /** * Names of all versions of the badge set. */ get versionNames(): string[]; /** * Gets a specific version of a badge by name. * * @param name The name of the version. */ getVersion(name: string): ChatBadgeVersion; }