import { Observable } from 'rxjs'; import { Service } from '../base/service'; import { ElementSelectionService } from '../dom/elementSelectionService'; import { ElementService } from '../dom/elementService'; export declare function createHtmlAutolinkService(element$: Observable, selectionService: ElementSelectionService): Service; export declare class HtmlAutolinkService extends ElementService { constructor(element: Element, selectionService: ElementSelectionService); private readonly selectionService; private readonly linkify; private get state(); private get canAutolink(); private autolink; }