import { BlockSchema, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, StyleSchema } from "@blocknote/core";
import { ComponentProps, FC } from "react";
import { FloatingUIOptions } from "../Popovers/FloatingUIOptions.js";
import { FloatingComposer } from "./FloatingComposer.js";
export default function FloatingComposerController<B extends BlockSchema = DefaultBlockSchema, I extends InlineContentSchema = DefaultInlineContentSchema, S extends StyleSchema = DefaultStyleSchema>(props: {
    floatingComposer?: FC<ComponentProps<typeof FloatingComposer>>;
    floatingUIOptions?: FloatingUIOptions;
}): import("react/jsx-runtime").JSX.Element;
