/** * @name Badge * @description The badge component is used to display a small amount of information to the user. * @category Informational * @tag content * @example */ export declare class Badge { content: string; color: 'primary' | 'secondary' | 'success' | 'error' | 'warning'; render(): any; }