import { Module } from "./module"; import { Dispatcher } from "./dispatcher"; export declare enum ServerErrorSeverity { Debug = "Debug", Info = "Info", Warning = "Warning", Error = "Error", Critical = "Critical" } export declare const ServerErrorSeverity_Ordinal: ServerErrorSeverity[]; export interface OnApplicationError { __processApplicationError(errorLevel: ServerErrorSeverity, module: Module, message: string): Promise; } export declare const dispatch_onServerError: Dispatcher;