import type { ListItemType, ListProps } from './List.types'; /** * A wrapper component that manages the rendering of either a sortable or regular list based on the provided props. */ declare const List: (props: ListProps) => import("react/jsx-runtime").JSX.Element; export default List;