import { ReactNode } from 'react'; import CSS from 'csstype'; declare function LabelledItems({ children, label, labelSize, style, labelStyle, width, height, itemsMargin, borderRadius, itemsMaxHeight, minWidth, minHeight, maxWidth, margin, maxHeight, scroller, padding, itemsBorderRadius, itemsPadding, itemsStyle, backgroundColor }: { children: ReactNode; label: ReactNode; labelSize?: string; style?: CSS.Properties; width?: string; height?: string; minWidth?: string; maxWidth?: string; minHeight?: string; maxHeight?: string; itemsWidth?: string; itemsHeight?: string; labelStyle?: CSS.Properties; itemsMargin?: string; itemsPadding?: string; itemsStyle?: CSS.Properties; justifyContent?: string; alignItems?: string; itemsMaxHeight?: string; margin?: string; padding?: string; scroller?: boolean; borderRadius?: string; itemsBorderRadius?: string; backgroundColor?: string; }): JSX.Element; export default LabelledItems;