import { ChildType } from ".."; import { TextObject } from "./TextObject"; export declare class CustomTextBox extends TextObject { protected callback: Set<(newValue: string) => void>; maxLength: number; private lastText; constructor(element: TextBox, childs: C); onChange(callback: (newValue: string) => void): void; }