UNPKG

asimex-visual-editor

Version:

A powerful visual page editor component for React applications

10 lines (9 loc) 266 B
import React from 'react'; interface StyleManagerProps { currentStyles: { [key: string]: string; }; onStyleChange: (property: string, value: string) => void; } declare const StyleManager: React.FC<StyleManagerProps>; export default StyleManager;