import type { GroupBase, MenuListProps as ReactSelectMenuListProps } from 'react-select'; import type { BaseGroup, BaseOption } from '../types.js'; /** * @internal */ export interface MenuListFunctionRefObject { /** Function to scroll to the last option. */ scrollToBottom: () => void; } type MenuListProps> = ReactSelectMenuListProps; export declare function MenuList>(props: Readonly, isMulti, Group>>): import("react/jsx-runtime").JSX.Element; export {};