import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace subscriptionProviderEnum { enum Id { AZERION_CONNECT = "azerion-connect", AUTH0 = "auth0", TELENOR_1 = "telenor-1", TELENOR_2 = "telenor-2", IOL_1 = "iol-1" } 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; }