import type { DropDownListItem, DropDownListProps } from './DropDownButton.js'; interface InnerDropDownListProps extends DropDownListProps { onSelect: (index: number) => void; } declare function DropDownList({ data, onSelect, renderItem, }: InnerDropDownListProps): import("react/jsx-runtime").JSX.Element; export default DropDownList; //# sourceMappingURL=DropDownList.d.ts.map