import { IUrlShortener, UrlShortenerResponse } from './iurlshortener.js'; export type GmfSuccessResponse = { short_url: string; }; declare class GmfShareManager implements IUrlShortener { serviceUrl: string; constructor(serviceUrl: string); shortenUrl(longUrl: string): Promise; } export default GmfShareManager;