import { EventEmitter, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export type BadgeType = 'info' | 'success' | 'warning' | 'danger' | 'light' | 'dark'; /** * @deprecated * NggBadge is deprecated in favor of GdsBadge found in the Core package * https://storybook.seb.io/latest/core/?path=/docs/components-badge--docs */ export declare class NggBadgeComponent implements OnInit { /** The color of the component */ badgeType?: BadgeType | ''; /** Flag whether the component can be dismissed */ set isCloseable(value: boolean | ''); get isCloseable(): boolean; /** Close text */ closeText?: string; /** Custom text color */ customColor?: string; /** Custom background color */ customBackgroundColor?: string; get class(): string; /** Callback when component is dismissed */ handleClose: EventEmitter; private _isCloseable?; constructor(); ngOnInit(): void; close(e: Event): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }