import { FC } from "react";
import { FloatingUIOptions } from "../Popovers/FloatingUIOptions.js";
import { LinkToolbarProps } from "./LinkToolbarProps.js";
export declare const LinkToolbarController: (props: {
    linkToolbar?: FC<LinkToolbarProps>;
    floatingUIOptions?: FloatingUIOptions;
    /**
     * Override the DOM node this floating element portals into. Falls back to
     * the ambient portal element (the element wrapping the editor by default)
     * when omitted.
     */
    portalElement?: HTMLElement;
}) => import("react/jsx-runtime").JSX.Element | null;
