export declare type BadgeType = 'default' | 'info' | 'success' | 'attention' | 'alert' | 'disabled';
export declare class Badge {
    /**
     * Sets the badge type. Can be `default`, `info`, `success`, `attention`, `alert` or `disabled`. Defaults to `default`.
     */
    type: BadgeType;
    /**
     * Badge size. Defaults to `md`.
     */
    size: 'sm' | 'md';
    class: string;
    readonly attrClass: string;
}
