import * as i0 from '@angular/core'; import { PipeTransform } from '@angular/core'; /** * Pipe "counter" formats numbers for output in counter badges as used in * app-sidenav. The counter value refers to a number of items a navigation * option includes (e.g. the number of unread messages). * * ```html * {{ counter | counter: 100 }} * ``` * * @internal */ declare class CounterPipe implements PipeTransform { private max; transform(value: number, ...args: number[]): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; } export { CounterPipe };