/**
 * Console colors.
 */
export declare enum COLOR {
    RESET = "\u001B[0m",
    RED = "\u001B[31m",
    GREEN = "\u001B[32m",
    YELLOW = "\u001B[33m",
    BLUE = "\u001B[34m",
    MAGENTA = "\u001B[35m",
    CYAN = "\u001B[36m",
    WHITE = "\u001B[37m",
    GRAY = "\u001B[90m"
}
/**
 * Logging level colors.
 */
export declare const LEVEL_COLORS: {
    debug: COLOR;
    info: COLOR;
    warn: COLOR;
    error: COLOR;
    fatal: COLOR;
};
/**
 * Device info for the app.
 */
export declare const DEVICE_INFO = "[3.7.1][SM-S908E 9] Mozilla/5.0 (Linux; Android 9; SM-S908E Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/128.0.6613.146 Safari/537.36";
//# sourceMappingURL=constants.d.ts.map