import { ListItemType, RepeaterListProps } from "./List.types"; /** * A list component that renders a list of items without any parent container. * * @template T - The type of the list item. * @param {RepeaterListProps} props - The properties for the repeater list. * @returns {JSX.Element} The rendered repeater list. */ declare const RepeaterList: (props: RepeaterListProps) => import("react/jsx-runtime").JSX.Element; export default RepeaterList;