import { InlineFollowButtonsConfig, InlineReactionButtonsConfig, InlineShareButtonsConfig, StickyShareButtonsConfig } from './types'; declare global { interface Window { onShareThisLoaded: () => void; __sharethis__: any; } } interface Component { config: (StickyShareButtonsConfig | InlineFollowButtonsConfig | InlineReactionButtonsConfig | InlineShareButtonsConfig) & { id?: string; property?: string; }; buttons: HTMLElement; } export default function (component: Component, product: string): void; export {};