import { EventEmitter, ElementRef, AfterViewInit } from '@angular/core';
import { SocialService } from '../social.service';
export declare class LinkedinSharingButton implements AfterViewInit {
    private socialAuthService;
    private document;
    share: any;
    response: EventEmitter<Boolean>;
    element: ElementRef;
    constructor(socialAuthService: SocialService, document: any);
    ngAfterViewInit(): void;
}
