import React from 'react'; import { ListItemProps } from './ListItem'; import { ListStyle } from './utils'; declare type ListItemElement = React.ReactElement; declare type Props = ListStyle & { className?: string; children?: ListItemElement | Array | null; listIsEmpty?: boolean; emptyListLabel?: string; }; export declare const List: ({ children, className, listIsEmpty, emptyListLabel, ...styleProps }: Props) => JSX.Element; export {};