declare class GroupEditor extends React.Component { constructor(props: any); constructor(props: any, context: any); disposables: any[] | undefined; onAssignItems: () => void; onRemoveItems: () => void; onAssignAll: () => void; onRemoveAll: () => void; getItemStoreIsCollection(): boolean; getItemStoreIsArray(): boolean; getAssignedItemStoreIsCollection(): boolean; getAssignedItemStoreIsArray(): boolean; getAllItems(): any; getItemCount(): any; getIsValueAssigned(value: any): any; getAssignedItems(): any; getAvailableItems(): any; getAllItemsFiltered(): any; getAssignedItemsFiltered(): any; getAvailableItemsFiltered(): any; getAssignedItemsCount(): any; getAvailableItemsCount(): any; getAssignedItemsFilterCount(): number; getAvailableItemsFilterCount(): number; getAssignedItemsUnfilteredCount(): any; getAvailableItemsUnfilteredCount(): any; getFilterText(): any; getAvailableSelectedCount(): number; getAssignedSelectedCount(): number; getSelectedCount(): number; getSelectedItems(): unknown[]; byAssignedItemsOrder: (left: any, right: any) => 0 | 1 | -1; clearSelection(left?: boolean, right?: boolean): void; filterItems(items: any): any; leftSelect: HTMLSelectElement | null | undefined; rightSelect: HTMLSelectElement | null | undefined; } declare namespace GroupEditor { namespace propTypes { const itemStore: PropTypes.Validator; const assignedItemStore: PropTypes.Validator; const filterText: PropTypes.Requireable; const onAssignItems: PropTypes.Validator<(...args: any[]) => any>; const onRemoveItems: PropTypes.Validator<(...args: any[]) => any>; const onMoveItems: PropTypes.Requireable<(...args: any[]) => any>; const height: PropTypes.Requireable; const showOptionsTooltip: PropTypes.Requireable; } namespace contextTypes { const d2: PropTypes.Requireable; } namespace defaultProps { const height_1: number; export { height_1 as height }; const filterText_1: string; export { filterText_1 as filterText }; export function onMoveItems_1(): void; export { onMoveItems_1 as onMoveItems }; const showOptionsTooltip_1: boolean; export { showOptionsTooltip_1 as showOptionsTooltip }; } } export default GroupEditor; import React from "react"; import PropTypes from "prop-types";