import { traceObj, FormatterFunc, config } from "../types/interfaces"; declare class KufaContext { readonly type: string; readonly memory: string | boolean; readonly zone: string | undefined; readonly enableFN: boolean; readonly hours: boolean | undefined; readonly formatters: FormatterFunc[]; trace: traceObj | boolean; time: Date | string; prefix: string; format: string; str: string; constructor(config: config); toString(): [string, string, string]; } export default KufaContext;