/// <reference types="react" />
declare type Options = {
    /** The url-encoded title value that you wish you use. */
    title?: string;
    /** The url-encoded description that you wish you use. */
    summary?: string;
    /** The url-encoded source of the content (e.g. your website or application name) */
    source?: string;
};
declare const LinkedinShareButton: import("react").ForwardRefExoticComponent<Omit<import("./ShareButton").Props<Options>, "forwardedRef" | "networkName" | "networkLink" | "opts"> & Options & import("react").RefAttributes<HTMLButtonElement>>;
export default LinkedinShareButton;
