///
import { ContentItemProps } from "./ContentItem";
import { ButtonProps } from "../util/Button";
import { WithTheme, WithoutTheme } from "../types";
export declare type ContentItemsProps = WithTheme<{
label: string;
title: string;
description: string;
data: Array>;
}> & Pick;
export declare function ContentItems({ data, label, title, description, onClick, ...props }: ContentItemsProps): JSX.Element;