import { type ReactNode } from "react";
export interface EditorBubbleProps {
    children: ReactNode;
    options?: any;
    className?: string;
}
export declare const EditorBubble: import("react").ForwardRefExoticComponent<EditorBubbleProps & import("react").RefAttributes<HTMLDivElement>>;
export default EditorBubble;
