/// import { LogLevel } from '../enums'; export interface OgmaOptions { logLevel: keyof typeof LogLevel; color: boolean; stream: Partial & Pick; json: boolean; context: string; application: string; [index: string]: any; } export declare const OgmaDefaults: OgmaOptions;