export declare namespace Log { type Level = "DEBUG" | "INFO" | "WARN" | "ERROR"; interface Options { print: boolean; level?: Level; logDir?: string; } function file(): string; function init(options: Options): Promise; interface Logger { debug(message: string, extra?: Record): void; info(message: string, extra?: Record): void; warn(message: string, extra?: Record): void; error(message: string, extra?: Record): void; } function create(tags?: Record): Logger; const Default: Logger; }