import React from 'react';
import { ListProps } from './List.types';
/**
 * List is a component that holds ListItems.
 */
declare const List: React.FC<ListProps>;
export default List;
