export declare namespace IssueSeverity {
    enum Enum {
        fatal = "fatal",
        error = "error",
        warning = "warning",
        info = "info"
    }
    const name = "IssueSeverity";
    const description = "Severity of the issue";
    const Keys: string[];
    type Type = keyof typeof Enum;
    const descriptions: Record<Enum, string>;
}
