import { Widget } from "../../core/widget"; export declare class TextValueCombo extends Widget { static xtype: string; static EVENT_CHANGE: string; static EVENT_BEFORE_POPUPVIEW: string; clear(): void; setText(text: string): void; setValue(value: any): void; setStatus(status: "success" | "warning" | "error"): void; getValue(): any[]; populate(items: any[]): void; }