import { Logger } from './logger'; /** * Init the API. * @param {String} name - application name * @deprecated Internal API. Application is not necessary to call it directly. */ declare function init(name?: string): void; /** * @API */ declare function logger(moduleName: string): Logger; export { Logger, logger, init, };