import { ComponentPropsWithoutRef, ReactNode } from 'react';
/**
* Props for the ComboboxList component
*/
export type ComboboxListProps = ComponentPropsWithoutRef<"ul" | "div"> & {
children?: ReactNode;
};
/**
* ComboboxList component for rendering the list container of combobox items
*
* Features:
* - Supports both single and multiple selection modes
* - Automatically handles empty state with "No match found" message
* - Shows loading spinner during async operations
* - Integrates with combobox state management
*
* @template Item - The type of items in the combobox
* @param props - The component props
* @returns A rendered combobox list container
*
* @example
*
* {items.map((item, index) => (
*
* {item.name}
*
* ))}
*
*/
export declare const ComboboxList: - ({ children, className, ...rest }: ComboboxListProps) => import("react/jsx-runtime").JSX.Element;