import React from 'react';
import { Block } from '../BlockManager';
interface TabbedRightPanelProps {
    blocks: Block[];
    showBlockManager: boolean;
    onAddBlock: (content: string, block: Block) => void;
    editor: any;
    iframeRef?: React.RefObject<HTMLIFrameElement>;
}
export declare const TabbedRightPanel: React.FC<TabbedRightPanelProps>;
export default TabbedRightPanel;
