UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

13 lines (12 loc) 435 B
import { ListItemProps, ListProps } from "./type.mjs"; import { ListItem } from "./ListItem/index.mjs"; import { ReactNode, RefAttributes } from "react"; //#region src/List/index.d.ts interface IList { (props: ListProps & RefAttributes<HTMLDivElement>): ReactNode; Item: typeof ListItem; } declare const List: IList; //#endregion export { ListItem, ListItemProps, ListProps, List as default }; //# sourceMappingURL=index.d.mts.map