import { Address } from './Address';
import { CopperInfo } from './CopperInfo';
import { FiberInfo } from './FiberInfo';
import { Portability } from './Portability';
import { EndpointReferenceTypeEnum } from './EndpointReferenceTypeEnum';
/** Endpoint information */
export interface Endpoint {
    /** Address */
    address?: Address;
    /** Copper information */
    copperInfo?: CopperInfo;
    /** Fiber information */
    fiberInfo?: FiberInfo;
    /** Portability details of the line number */
    portability?: Portability;
    /** Reference of the endpoint */
    reference: string;
    /** Endpoint reference type */
    referenceType: EndpointReferenceTypeEnum;
}
//# sourceMappingURL=Endpoint.d.ts.map