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