import React from "react"; import type { ListSize } from "src/types"; import type { ListNode } from "./types"; export type VirtualizedEntityListProps = { id?: string; maxHeight: number; size: ListSize; dataShown: ListNode[]; selectedIndex: number; itemTemplate: (index: number) => React.ReactNode; "data-e2e-test-id"?: string; role?: "list" | "listbox" | "menu"; "aria-multiselectable"?: boolean; "aria-label"?: string; }; export declare function VirtualizedEntityList({ id, maxHeight, size, dataShown, selectedIndex, itemTemplate, "data-e2e-test-id": dataE2eTestId, role, "aria-multiselectable": ariaMultiselectable, "aria-label": ariaLabel, }: VirtualizedEntityListProps): React.ReactElement;