import type React from "react"; import type { DropdownPassthroughProps } from "./MultiSelectCombobox.types"; interface MultiSelectDropdownProps extends DropdownPassthroughProps { renderOption: (val: string) => React.ReactNode; testIdPrefix?: string; children?: React.ReactNode; } export declare function MultiSelectDropdown({ resolvedOptions, flatOptionsMap, isGrouped, isLoading, loadingMessage, emptyMessage, showCreateOption, renderOption, testIdPrefix, hasMoreLazy, loaderCallbackRef, children, }: MultiSelectDropdownProps): import("react/jsx-runtime").JSX.Element; export {};