declare namespace Ext { export namespace view { export interface BoundListConfig { itemSelector?: string; alignOnScroll?: boolean; alignTarget?: string; alwaysOnTop?: boolean | number; anchor?: string; animateShadow?: boolean; ariaAttributes?: object; ariaDescribedBy?: string; ariaLabel?: string; ariaLabelledBy?: string; autoEl?: string | object; autoRender?: boolean | string | Ext.dom.Element; autoScroll?: boolean; autoShow?: boolean; baseCls?: string; bind?: object | string; blockRefresh?: boolean; border?: number | string | boolean; childEls?: object | string[] | object[]; cls?: string | string[]; columnWidth?: number; componentCls?: string; componentLayout?: string | object; constrain?: boolean; constraintInsets?: object | string; constrainTo?: Ext.util.Region | Ext.dom.Element; contentEl?: string; controller?: string | object | Ext.app.ViewController; data?: object; defaultAlign?: string; defaultListenerScope?: boolean; deferEmptyText?: boolean; deferInitialRefresh?: boolean; disabled?: boolean; disabledCls?: string; disableSelection?: boolean; displayField?: string; dock?: 'top' | 'bottom' | 'left' | 'right'; draggable?: boolean | object; emptyText?: string; fixed?: boolean; flex?: number; floating?: boolean; focusCls?: string; focusOnToFront?: boolean; formBind?: boolean; frame?: boolean; height?: number | string; hidden?: boolean; hideMode?: string; html?: string | object; id?: string; itemCls?: string; itemId?: string; itemTpl?: string | string[] | Ext.XTemplate; keyMap?: object; keyMapEnabled?: boolean; keyMapTarget?: string; liquidLayout?: boolean; listeners?: object; liveDrag?: boolean; loader?: Ext.ComponentLoader | object; loadingCls?: string; loadingHeight?: number; loadingText?: string; loadMask?: boolean | object; margin?: number | string; maskElement?: string; maxHeight?: number; maxWidth?: number; minHeight?: number; minWidth?: number; modal?: boolean; modelValidation?: boolean; multiSelect?: boolean; overCls?: string; overflowX?: string; overflowY?: string; overItemCls?: string; padding?: number | string; pageSize?: number; plugins?: Ext.plugin.Abstract[] | Ext.plugin.Abstract | object[] | object | Ext.react.enums.Plugin | Ext.react.enums.Plugin[]; preserveScrollOnRefresh?: boolean; preserveScrollOnReload?: boolean; publishes?: string | string[] | object; reference?: string; region?: "north" | "south" | "east" | "west" | "center"; renderConfig?: object; renderData?: object; renderSelectors?: object; renderTo?: string | Ext.dom.Element; renderTpl?: Ext.XTemplate | string | string[]; resizable?: boolean | object; resizeHandles?: string; saveDelay?: number; scrollable?: boolean | string | object; selectedItemCls?: string; selection?: Ext.data.Model; selectionModel?: object | Ext.selection.DataViewModel; session?: boolean | object | Ext.data.Session; shadow?: string | boolean; shadowOffset?: number; shim?: boolean; shrinkWrap?: boolean | number; simpleSelect?: boolean; singleSelect?: boolean; stateEvents?: string[]; stateful?: boolean | object; stateId?: string; store?: Ext.data.Store; style?: string | object; tabIndex?: number; throttledUpdate?: boolean; toFrontOnShow?: boolean; touchAction?: object; tpl?: string | Ext.XTemplate; tplWriteMode?: string; trackOver?: boolean; twoWayBindable?: string | string[] | object; ui?: string; updateDelay?: number; userCls?: string | string[]; viewModel?: string | object | Ext.app.ViewModel; weight?: number; width?: number | string; xtype?: string; } export class BoundList extends Ext.view.View { public pagingToolbar?: Ext.toolbar.Paging; public getInnerTpl(displayField?: string): string; public setDisplayField(displayField?: string): void; } } }