import React from 'react';
import { ListItemProps } from './ListItem.types';
/**
 * ListItem is the component inside the list.
 */
declare const ListItem: React.ForwardRefExoticComponent<ListItemProps & React.RefAttributes<HTMLLIElement>>;
export default ListItem;
