import { ListGridType, ListItemMetaProps, ListItemProps, ListPaginationProps, ListProps } from "./types.js"; import { ListItem } from "./list-item.js"; import { ListItemMeta } from "./list-item-meta.js"; import React from "react"; //#region src/list/index.d.ts type IList = ((props: ListProps & React.RefAttributes) => React.ReactElement | null) & { Item: typeof ListItem; ItemMeta: typeof ListItemMeta; displayName?: string; }; declare const DefaultList: IList; //#endregion export { DefaultList }; //# sourceMappingURL=index.d.ts.map