import { Widget } from "../../core/widget"; export declare class Loader extends Widget { static xtype: string; static EVENT_CHANGE: string; populate(items: T[]): void; setNotSelectedValue(...args: any[]): void; getNotSelectedValue(): T; getAllButtons(): T[]; getAllLeaves(): T[]; getSelectedButtons(): T[]; getNotSelectedButtons(): T[]; getIndexByValue(value: any): number; getNodeById(id: any): any; getNodeByValue(value: any): any; getValue(): T[]; }