/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { Direction, Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges, TemplateRef } from '@angular/core'; import { VtsConfigKey, VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { BooleanInput, VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsBadgeStatusType } from './types'; import * as i0 from "@angular/core"; export declare class VtsBadgeComponent implements OnChanges, OnDestroy, OnInit { vtsConfigService: VtsConfigService; private renderer; private cdr; private elementRef; private directionality; readonly _vtsModuleName: VtsConfigKey; static ngAcceptInputType_vtsShowZero: BooleanInput; static ngAcceptInputType_vtsShowDot: BooleanInput; static ngAcceptInputType_vtsDot: BooleanInput; static ngAcceptInputType_vtsStandalone: BooleanInput; showSup: boolean; presetColor: string | null; dir: Direction; private destroy$; vtsShowZero: boolean; vtsShowDot: boolean; vtsStandalone: boolean; vtsDot: boolean; vtsOverflowCount: number; vtsColor?: string; vtsStyle: { [key: string]: string; } | null; vtsText?: string | TemplateRef | null; vtsTitle?: string | null | undefined; vtsStatus?: VtsBadgeStatusType | string; vtsCount?: number | TemplateRef; vtsOffset?: [number, number]; constructor(vtsConfigService: VtsConfigService, renderer: Renderer2, cdr: ChangeDetectorRef, elementRef: ElementRef, directionality: Directionality); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private prepareBadgeForRtl; get isRtlLayout(): boolean; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }