export declare class ZeaParamWidgetString { /** * Parameter to be edited */ parameter: any; /** * The application data */ appData: any; private txtField; private parameterChange; /** * Class constructor */ constructor(); /** * Run when component loads */ componentDidLoad(): void; /** * Set the inputs up */ private setUpInputs; /** * Value change handler */ private updateComponent; /** * Input handler */ private onInput; /** * Change handler */ private onChange; /** * Handles the creation of the UX Change object and the UndoRedoManager * * @param {Parameter} value - Parameter object */ handleUXChange(value: any): void; /** * Render method. * @return {JSX} The generated html */ render(): any; }