import { ReactElement } from 'react'; import type { TypeGroup } from '../../schema/index.js'; declare function ItemsComponent({ items, typeGroupId, renderItem, path, useVirtualList }: { items: string[]; typeGroupId: TypeGroup; renderItem: (item: string, path: string, type: TypeGroup, ref: React.RefObject) => ReactElement; path: string; useVirtualList: boolean; }): ReactElement>[]; export declare const Items: import("react").MemoExoticComponent; export {};