import * as React from 'react';
import { IColItem } from '../../UIInterfaces';
import { BoxProps } from '../../../components/Flex';
export interface AdaptableObjectCollectionProps extends BoxProps {
    className?: string;
    colItems: IColItem[];
    items: any[];
    allowOverflow?: boolean;
    style?: React.CSSProperties;
}
export declare const AdaptableObjectCollection: React.FunctionComponent<AdaptableObjectCollectionProps>;
