import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace liberoTrialTypeEnum { enum Id { ABSENT = "absent", ACTIVE = "active", EXPIRED = "expired" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Alternative: { '1': string; '2': string; '3': string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }