import React, { CSSProperties } from 'react';
export type Props = {
    trackingCategory?: string;
    className?: string;
    shareUrl?: string;
    title?: string;
    style?: CSSProperties;
};
export declare const ShareBox: ({ className, trackingCategory, style, shareUrl, title, }: Props) => React.JSX.Element;
