export = loggerApiFactory; declare function loggerApiFactory({ config }: { config: any; }): { /** * @param {object} options * @param {'error'|'warn'|'info'|'debug'} options.level * @param {string} options.msg * @param {Array} options.args * @returns {Promise} */ addLog: ({ level, msg, args }: { level: 'error' | 'warn' | 'info' | 'debug'; msg: string; args: any[]; }) => Promise; bindRouter: (router: any) => void; };