import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace segmentEnum { enum Id { TOP = "top", UP = "up", MIDDLE = "middle", DOWN = "down", BOTTOM = "bottom", NONE = "none" } 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; }