import { PipeTransform } from '@angular/core'; /** * This pipe analyses a string and converts any url into a href tag * */ export declare class LinkifyPipe implements PipeTransform { transform(value: string): string; private _recognizeUrl; private _setProtocol; }