import { BlockSchema, InlineContentSchema, StyleSchema } from "@blocknote/core";
import { BlockNoteViewProps } from "@blocknote/react";
import { Theme } from "./BlockNoteTheme.js";
import "./style.css";
export declare const BlockNoteView: <BSchema extends BlockSchema, ISchema extends InlineContentSchema, SSchema extends StyleSchema>(props: Omit<BlockNoteViewProps<BSchema, ISchema, SSchema>, "theme"> & {
    theme?: "light" | "dark" | Theme | {
        light: Theme;
        dark: Theme;
    };
}) => import("react/jsx-runtime.js").JSX.Element;
