import type { ShareableSocialNetwork, StoryShareLinksLayout } from './types';
export interface Props {
    network: ShareableSocialNetwork;
    shareUrl: string;
    layout?: StoryShareLinksLayout;
    iconClassName?: string;
}
export declare function ShareButton({ network, shareUrl, layout, iconClassName }: Props): import("react/jsx-runtime").JSX.Element;
