import * as i0 from "@angular/core"; export declare class dbDateService { /** * Parse date to visualize as a string */ parseDate(date: Date): string; parseTime(date: Date): string; addZeroesOnData(numero: number): string; parseDatefromDB(dirtyDateMeasurement: any): Date; isDateFromServer(date: any): boolean; isDateInstance(date: any): boolean; parseDatefromDBMilliseconds(dirtyDateMeasurement: any): Date; prepareHourforDB(dirtyHour: Date): Date; parseForHour(allMinutes: number): number; /** * Rounds a number to the our preferred number of decimal places. * @param number the number we want to round * @param decimals how many decimal places we want the rounded number to have * @returns the rounded number */ roundDecimals(number: number, decimals: number): number; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }