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