import * as React from "react"; import { PbEditorBlockPlugin } from "../../../../types"; interface BlockPreviewProps { plugin: PbEditorBlockPlugin; addBlockToContent: (plugin: PbEditorBlockPlugin) => void; onEdit: (ev: React.MouseEvent) => void; onDelete: (ev: React.MouseEvent) => void; } export declare const BlockPreview: (props: BlockPreviewProps) => React.JSX.Element; export {};