/** * Define basic logging interface - stolen from bunyan: * https://www.npmjs.com/package/bunyan */ export interface Logger { fatal(info: any, msg?: string): any; error(info: any, msg?: string): any; warn(info: any, msg?: string): any; info(info: any, msg?: string): any; debug(info: any, msg?: string): any; trace(info: any, msg?: string): any; } export declare const configKey = "littleware/logging"; export declare const aliasName = "alias/littleware/little-elements/common/appContext/Logger"; export declare function getLogger(): Promise;