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; /** Function to scroll to a specific virtualizer index. */ scrollToIndex: (index: number) => void; } type MenuListProps> = ReactSelectMenuListProps; export declare function MenuList>(props: Readonly, isMulti, Group>>): import("react/jsx-runtime").JSX.Element; export {};