import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace contextSourceEnum { enum Id { PROFILE = "profile", USER = "user", BASE = "base", AGENT = "agent", SESSION = "session", TRACK = "track", RUNTIME = "runtime", PROJECT = "project", TENANT = "tenant", TEMP = "temp", RAW = "raw" } 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; }