import * as React from 'react'; import { IColItem } from '../../UIInterfaces'; export interface AdaptableObjectCollectionProps extends React.ClassAttributes { colItems: IColItem[]; items: any[]; reducedPanel?: boolean; allowOverflow?: boolean; style?: React.CSSProperties; } export declare class AdaptableObjectCollection extends React.Component { render(): any; }