import { LogStyle, LogTable } from './interfaces'; export declare let isBrowser: boolean; export declare const defaultLogTableOptions: { padding: number; spacing: number; }; /** * Can be used to change the assumed environment */ export declare function SetLoggerEnvironment(env: 'node' | 'browser'): void; export declare function stringColorToAnsiColor(type: 'background' | 'color', color?: string): string | undefined; export declare function ANSICodes(type: 'background' | 'color' | 'bold' | 'reset'): "0" | "1;" | "38;" | "48;"; export declare function getBrowserStyle(style?: LogStyle): string; export declare function maxTableColumnLength(column: LogTable[0]): number; export declare function removeStyles(item: string | number): string; export declare function pad(text: string, start: number, end: number): string; export declare function getColumn(matrix: LogTable, col: number): (string | number | import("./interfaces").LogMessage)[];