import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; export declare class NgTinyUrlService { private http; private headers; constructor(http: HttpClient); shorten(url: string, alias?: string): Observable; }