import { BuilderModule, PropWysiwyg } from '../../../@types/settings.js'; import './CtrlWysiwyg.scss'; type ControlProps = { updateProps: (id: string, path: string, value: any) => void; deleteProp: (path: string) => void; currMod: BuilderModule; updatePath: string; prop: PropWysiwyg; value: any; inheritVal?: boolean; }; export default function CtrlWysiwyg({ currMod, updatePath, prop, value, inheritVal, deleteProp, updateProps, saveShortcut, }: ControlProps & { saveShortcut: () => void; }): import("react/jsx-runtime").JSX.Element; export {};