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