import m from 'mithril'; import { ValidEventTypes } from '../../event-emitter/EventEmitter'; import { Control, ControlAttributes, ControlEventTypes } from '../common/Control'; export declare type TextAttributes = ControlAttributes & { value?: string; }; declare type TextEventTypes = ValidEventTypes & ControlEventTypes; export declare class Text extends Control { setValue(value: string): void; view(): m.Vnode | m.Children; } export {}; //# sourceMappingURL=Text.d.ts.map