export type LoggerMessageType = string | string[];
declare function info(message: LoggerMessageType): void;
declare function warn(message: LoggerMessageType): void;
declare function success(message: LoggerMessageType): void;
declare function error(message: LoggerMessageType): void;
declare const logger: {
    info: typeof info;
    warn: typeof warn;
    success: typeof success;
    error: typeof error;
};
export default logger;
