import { ELogActions } from '../../enums/Logging'; /** * Handles logging of data for debug purpose. * * @internal */ export declare class LogService { /** Whether logging is enabled or not. */ static enabled: boolean; /** * @param action - The action to be logged. * * @returns - The colored text representing the action. */ private static getColoredAction; /** * Logs the given data. * * @param action - The action to be logged. * * @param data - The data to be logged. */ static log(action: ELogActions, data: NonNullable): void; }