import UrlManager from '../../../tools/url/urlmanager.js'; import { IUrlShortener, UrlShortenerResponse } from './iurlshortener.js'; declare class GeoGirafeShareManager implements IUrlShortener { private readonly serviceUrl; private readonly urlManager; constructor(serviceUrl: string, urlManager: UrlManager); shortenUrl(longUrl: string, indexDocument?: string): Promise; } export default GeoGirafeShareManager;