import { ConfigPlugin } from "./config";
export type Logger = ReturnType<typeof createLoggerPlugin>;
export declare function createLoggerPlugin(configPlugin: ConfigPlugin): {
info: (...args: any[]) => void;
warn: (...args: any[]) => void;
error: (...args: any[]) => void;
};