import { IUrlShortener, UrlShortenerResponse } from './iurlshortener';
declare class GmfManager implements IUrlShortener {
    serviceUrl: string;
    constructor(serviceUrl: string);
    shortenUrl(longUrl: string): Promise<UrlShortenerResponse>;
}
export default GmfManager;
