import React from "react"; import { type ListItemProps } from "../../../components/ListItem/ListItem"; import { type ListTitleProps } from "../../ListTitle/ListTitle"; import type VibeComponentProps from "../../../types/VibeComponentProps"; export interface VirtualizedListItemsProps extends VibeComponentProps { /** * The list of children. */ children?: React.ReactElement | React.ReactElement[]; } export declare const VirtualizedListItems: React.FC;