/** 编程猫用户创作者等级。*/ export declare class CodemaoUserBadge {
    /** 准创作者。*/
    static readonly QUASI_CREATOR: CodemaoUserBadge;
    /** 积木小白。*/
    static readonly BLOCK_BEGINNER: CodemaoUserBadge;
    /** ⭐ 潜力新星。*/
    static readonly PROMISING_NEW_STAR: CodemaoUserBadge;
    /** 💎 进阶高手。*/
    static readonly ADVANCED_MASTER: CodemaoUserBadge;
    /** 👑 编程大佬。*/
    static readonly PROGRAMMING_BIG_SHOT: CodemaoUserBadge;
    /** 👑 源码传说。*/
    static readonly CODE_LEGEND: CodemaoUserBadge;
    /** 用户勋章名称。*/ readonly name: string;
    /** 用户勋章短名称。*/ readonly shortName: string;
    /** 用户勋章颜色。*/ readonly color?: string | undefined;
    /** 用户勋章描述。*/ readonly description?: string | undefined;
    /** 用户勋章图像链接。*/ readonly imageURL?: string | undefined;
    /** 用户勋章短图像链接。*/ readonly shortImageURL?: string | undefined;
    /** 用户勋章图标链接。*/ readonly iconURL?: string | undefined;
    /** 用户勋章符号。*/ readonly symbol: symbol;
    static from(value: number | CodemaoUserBadge): CodemaoUserBadge;
    static parse(value: number): CodemaoUserBadge;
    private constructor();
}
