/// import { ContentWithIconItemProps } from "./ContentWithIconItem"; import { ButtonProps } from "../util/Button"; import { WithTheme, WithoutTheme } from "../types"; export declare type ContentWithIconItemsProps = WithTheme<{ data: Array>; title: string; description: string; buttonText?: string; }> & Pick; export declare function ContentWithIconItems({ data, title, description, onClick, buttonText, ...props }: ContentWithIconItemsProps): JSX.Element;