import { type FC } from "react"; import type { ListItemProps, ListProps } from "./List.types"; export { ListProps, ListItemProps }; /** * @deprecated Please check out the recipes on how to create a `List` component using composition: https://design.luscii.com/?path=/docs/recipes-list-composition--docs */ declare const List: FC; export default List;