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