import { FileBlockConfig, audioBlockConfig } from "@blocknote/core"; import { ReactCustomBlockRenderProps } from "../../schema/ReactBlockSpec.js"; export declare const AudioPreview: (props: Omit, "contentRef">) => import("react/jsx-runtime").JSX.Element | null; export declare const AudioToExternalHTML: (props: Omit, "contentRef">) => import("react/jsx-runtime").JSX.Element; export declare const AudioBlock: (props: ReactCustomBlockRenderProps) => import("react/jsx-runtime").JSX.Element; export declare const ReactAudioBlock: { config: { type: "audio"; propSchema: { backgroundColor: { default: "default"; }; name: { default: ""; }; url: { default: ""; }; caption: { default: ""; }; showPreview: { default: true; }; }; content: "none"; isFileBlock: true; fileBlockAccept: string[]; }; implementation: import("@blocknote/core").TiptapBlockImplementation<{ type: "audio"; propSchema: { backgroundColor: { default: "default"; }; name: { default: ""; }; url: { default: ""; }; caption: { default: ""; }; showPreview: { default: true; }; }; content: "none"; isFileBlock: true; fileBlockAccept: string[]; }, any, import("@blocknote/core").InlineContentSchema, import("@blocknote/core").StyleSchema>; };