export namespace logger {
    export { info };
    export { debug };
    export { warn };
    export { error };
}
declare function info(prefix?: string, ...args: any[]): void;
declare function debug(prefix?: string, ...args: any[]): void;
declare function warn(prefix?: string, ...args: any[]): void;
declare function error(prefix?: string, ...args: any[]): void;
export {};
//# sourceMappingURL=logger.d.ts.map