/// <reference types="react" />
declare type Options = {
    /** Your app's unique identifier. */
    appId: string;
    /** The URL to redirect to after a person clicks a button on the dialog.
     * Required when using URL redirection. */
    redirectUri?: string;
    /** A user ID of a recipient. Once the dialog comes up, the sender can
     * specify additional people as recipients. */
    to?: string;
};
declare const FacebookMessengerShareButton: import("react").ForwardRefExoticComponent<Omit<import("./ShareButton").Props<Options>, "forwardedRef" | "networkName" | "networkLink" | "opts"> & Options & import("react").RefAttributes<HTMLButtonElement>>;
export default FacebookMessengerShareButton;
