import type { JSX } from 'solid-js'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; import type { MenuChildProps } from './MenuChild'; export type MenuItemProps = HeadlessPropsWithRef; /** * One action in a `Menu`. The arrow keys and type-ahead skip disabled items. * * Renders an `
  • ` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/menu.md} */ export declare function MenuItem(props: MenuItemProps): JSX.Element; //# sourceMappingURL=MenuItem.d.ts.map