/// <reference types="react" />
declare type Options = {
    title?: string;
    image?: string;
    noParse?: boolean;
    noVkLinks?: boolean;
};
declare const VKShareButton: import("react").ForwardRefExoticComponent<Omit<import("./ShareButton").Props<Options>, "forwardedRef" | "networkName" | "networkLink" | "opts"> & Options & import("react").RefAttributes<HTMLButtonElement>>;
export default VKShareButton;
