import { ElementRef } from '@angular/core';

declare abstract class NgDocListHost {
    abstract listHostOrigin: ElementRef<HTMLElement> | HTMLElement | undefined;
}

export { NgDocListHost };
