import { TypeEnum } from './TypeEnum';
import { TypeServiceEnum } from './TypeServiceEnum';
/** Additional number */
export interface Number {
    /** Description of the service */
    description: string;
    /** Feature enabled on the number */
    featureType: TypeEnum;
    /** Parent of the service (if it is part of a pool) */
    partOfPool?: string;
    /** Name of the service */
    serviceName: string;
    /**  */
    serviceType: TypeServiceEnum;
}
//# sourceMappingURL=Number.d.ts.map