import type { Color, UTCDate, NLoggerService, ModeObject } from "../.."; export declare class Helpers { static addBrackets(str: string): string; static addLevel(level: string, bg: keyof Color.Color, color: keyof Color.Color): string; static centralized(maxLength: number, str: string): string; static switchChecker(variant: never | any): Error; static levelConsoleLog(msg: string, color: keyof Color.Color, loggerLevels: keyof NLoggerService.CoreLoggerLevels | keyof NLoggerService.SchemaLoggerLevels, service?: string, levelColors?: keyof Color.Color, levelBgColors?: keyof Color.Color): void; static get UTCDate(): UTCDate; static parseQueryParams(query: ModeObject): ModeObject; static parseValue(value: string | number | boolean): string | number | boolean; static getRouteUniqueName(method: string, version: string, action: string): string; static getStreamUniqueName(version: string, action: string): string; static getEventUniqueName(type: string, version: string, event: string): string; }