import type { StoryShareLinksLayout } from './types';
export declare function StoryShareLinks({ className, iconClassName, shareUrl, onUrlCopied, withScrollToTopButton, layout, }: StoryShareLinks.Props): import("react/jsx-runtime").JSX.Element | null;
export declare namespace StoryShareLinks {
    interface Props {
        shareUrl: string | null;
        onUrlCopied?: () => void;
        withScrollToTopButton?: boolean;
        className?: string;
        iconClassName?: string;
        layout?: StoryShareLinksLayout;
    }
}
