import {UIElement} from "../UIElement"; import {UIEventSource} from "../UIEventSource"; export abstract class UIInputElement extends UIElement{ abstract GetValue() : UIEventSource; }