import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace severityEnum { enum Id { EMERGENCY = "emergency", ALERT = "alert", CRITICAL = "critical", ERROR = "error", WARNING = "warning", NOTICE = "notice", INFO = "info", DEBUG = "debug", SPECIAL = "special" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }