export declare enum Type { DEFAULT = 0, INFO = 1, SUCCESS = 2, WARNING = 3, ERROR = 4, } export declare enum Position { TOP_LEFT = 0, TOP_RIGHT = 1, BOTTOM_LEFT = 2, BOTTOM_RIGHT = 3, } export declare class Badge { private _type; private _value; private _iconBdg; private _position; TypeEnum: typeof Type; PositionEnum: typeof Position; type: string; position: string; value: string; iconBdg: string; setClasses(): {}; setPosition(): {}; } export declare class BadgeModule { }