export declare const Severity: {
    readonly EMERGENCY: 0;
    readonly ALERT: 1;
    readonly CRITICAL: 2;
    readonly ERROR: 3;
    readonly WARNING: 4;
    readonly NOTICE: 5;
    readonly INFORMATIONAL: 6;
    readonly DEBUG: 7;
};
export type SeverityType = (typeof Severity)[keyof typeof Severity];
