import type { AntelopeLogging } from "@antelopejs/interface-core/config"; export declare const getLevelInfo: (levelId: number) => { name: string; color: string; }; export declare function getColoredText(text: string, color: string): string; export declare function isTerminalOutput(): boolean; export declare function stripAnsiCodes(str: string): string; export declare function stringVisualWidth(str: string): number; export declare function stripAnsi(str: string): string; export declare function serializeLogValue(value: any): string; export declare function formatDate(date: Date, format?: string): string; export declare function formatLogMessageWithRightAlignedDate(logging: AntelopeLogging, log: { levelId: number; args: any[]; time: number; }, module?: string, defaultDateFormat?: string): string;