import { OnInit, EventEmitter } from '@angular/core';
import { SocialService } from '../social.service';
export declare class FacebookSharingButton implements OnInit {
    private socialAuthService;
    private document;
    share: any;
    response: EventEmitter<Boolean>;
    constructor(socialAuthService: SocialService, document: any);
    ngOnInit(): void;
    sharing(): void;
}
