import React from 'react';
import { SelectedElement } from '../../types/editor';
interface ElementInfoProps {
    selectedElement: SelectedElement;
    onCopy: () => void;
    onDelete: () => void;
    onOpenAssets?: () => void;
}
declare const ElementInfo: React.FC<ElementInfoProps>;
export default ElementInfo;
