UNPKG

@itwin/itwinui-react

Version:

A react component library for iTwinUI

7 lines (6 loc) 391 B
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 {};