/**
 * Copyright 2013-2026 the original author or authors from the JHipster project.
 *
 * This file is part of the JHipster project, see https://www.jhipster.tech/
 * for more information.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import type { Logger as DefaultLogger, LoggerOptions } from '@yeoman/adapter';
import type { Logger as LoggerApi } from '@yeoman/types';
import createDebug from 'debug';
export declare const CLI_LOGGER = "jhipster:cli";
export declare const createJHipsterLogger: (options?: LoggerOptions & {
    namespace?: string;
    debugEnabled?: boolean;
}) => {
    force: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    info: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    skip: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    create: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    invoke: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    conflict: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    identical: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    added: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    removed: (format?: any, ...param: any[]) => LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
} & {
    (format?: string, parameters?: Record<string, any>): LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    (message?: any, ...optionalParameters: any[]): LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    write(format?: any, ...param: any[]): LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    writeln(format?: any, ...param: any[]): LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    ok(format?: any, ...param: any[]): LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    error(format?: any, ...param: any[]): LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
    colored(coloredMessage: import("@yeoman/types").ColoredMessage<import("@yeoman/types").DefaultLoggerCategories>[]): LoggerApi<import("@yeoman/types").DefaultLoggerCategories>;
} & {
    debugger: createDebug.Debugger;
    debug(msg: any, ...args: any[]): void;
    warn(this: LoggerApi, format?: any, ...param: any[]): LoggerApi;
    verboseInfo(this: LoggerApi, format?: any, ...param: any[]): LoggerApi;
    log(this: LoggerApi, format?: any, ...param: any[]): LoggerApi;
    error(this: DefaultLogger, msg: string, error: string): void;
    fatal(this: DefaultLogger, msg: string, trace?: boolean): never;
} & {
    console: Console;
};
export type Logger = ReturnType<typeof createJHipsterLogger>;
