import * as React from 'react';
import { Menu } from '../Menu/Menu.js';
import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
type ComboBoxMenuProps = Omit<React.ComponentPropsWithoutRef<typeof Menu>, 'onClick' | 'trigger'> & React.ComponentPropsWithoutRef<'div'>;
export declare const ComboBoxMenu: PolymorphicForwardRefComponent<"div", ComboBoxMenuProps>;
export {};
