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<HTMLDivElement>) => ReactElement;
    path: string;
    useVirtualList: boolean;
}): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>[];
export declare const Items: import("react").MemoExoticComponent<typeof ItemsComponent>;
export {};
