import { PipeTransform } from "@angular/core"; import { KlaNumberFormatterService } from "../services/kla-number-formatter.service"; import * as i0 from "@angular/core"; /** * This pipe transforms a number into a easily readable, formatted number with commas in the correct spots. */ export declare class ReadableNumPipe implements PipeTransform { private klaNumberFormatterService; constructor(klaNumberFormatterService: KlaNumberFormatterService); /** * @param value Number to format * @param places Number of decimal places to display * @param prefix if set, append this prefix to the result * @param unit if set, append unit or suffix to the formatted number * @returns formatted number */ transform(value: number, places?: number, prefix?: string, unit?: string): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }