@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 372 B
TypeScript
import type { ReactNode, RefAttributes } from 'react';
import ListItem from './ListItem';
import type { ListProps } from './type';
interface IList {
(props: ListProps & RefAttributes<HTMLDivElement>): ReactNode;
Item: typeof ListItem;
}
declare const List: IList;
export default List;
export { default as ListItem } from './ListItem';
export type * from './type';