import { ReactNode } from 'react';
/**
* Props for the ComboboxEmpty component
*/
export type ComboboxEmptyProps = {
children?: ReactNode;
};
/**
* ComboboxEmpty component for rendering content when no items are available
*
* Features:
* - Only renders children when the combobox has no items
* - Integrates with combobox state management
* - Automatically manages empty state visibility
*
* @template Item - The type of items in the combobox
* @param props - The component props
* @returns The children when no items are available, or null
*
* @example
*
* No items found. Try a different search term.
*
*/
export declare const ComboboxEmpty: - ({ children, }: ComboboxEmptyProps) => import("react/jsx-runtime").JSX.Element;