import { FC } from "react";
import { FloatingUIOptions } from "../Popovers/FloatingUIOptions.js";
import { FilePanelProps } from "./FilePanelProps.js";
export declare const FilePanelController: (props: {
    filePanel?: FC<FilePanelProps>;
    floatingUIOptions?: FloatingUIOptions;
    /**
     * Override the DOM node this floating element portals into. Falls back to
     * `editor.portalElement` (which by default is mounted inside `bn-container`)
     * when omitted.
     */
    portalElement?: HTMLElement | null;
}) => import("react/jsx-runtime").JSX.Element;
