import React from 'react'; import type { SelectOptionProps } from '../controls/SelectOption'; import type { Polymorphic } from '../core/polymorphism'; import { type PressableBaseProps } from '../system/Pressable'; export declare const menuitemDefaultElement = 'button'; export type MenuitemDefaultElement = typeof menuitemDefaultElement; export type MenuitemBaseProps = Polymorphic.ExtendableProps< PressableBaseProps, { children: NonNullable; } & Pick >; export type MenuitemProps = Polymorphic.Props< AsComponent, MenuitemBaseProps >; type MenuitemComponent = (( props: MenuitemProps, ) => Polymorphic.ReactReturn) & Polymorphic.ReactNamed; export declare const MenuItem: MenuitemComponent; export {}; //# sourceMappingURL=MenuItem.d.ts.map