import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace profileStatusEnum { enum Id { DEMO = "demo", ANONYMOUS = "anonymous", ANONYMOUS_TRIAL = "anonymous-trial", REGULAR = "regular", REGULAR_TRIAL = "regular-trial", SUBSCRIBED = "subscribed", SUBSCRIBED_TRIAL = "subscribed-trial", PAYMENT_PENDING = "payment-pending" } 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; }