import React from 'react'; import { ItemInfoProps } from '../../../itemInfo'; export declare type ItemsSectionProps = Readonly<{ children: Array>; className?: string; tag?: JSX.Element; }>; /** * Items Section: display a list of items in a display: flex. * Use with two items. */ export declare const ItemsSection: (props: ItemsSectionProps) => JSX.Element;