import type { JSX, PropsWithChildren } from 'react';
interface ShareLinkProps {
    className?: string;
    size?: number;
}
export declare function ShareLink(props: PropsWithChildren<ShareLinkProps>): JSX.Element;
export {};
