/// import { BoxProps } from '../Box'; import { DropdownMenuItemProps } from '../DropdownMenu'; export declare type LocalSelectMenuItemProps = { isDropdown?: boolean; }; export declare type SelectMenuItemProps = BoxProps & DropdownMenuItemProps & LocalSelectMenuItemProps; export declare const SelectMenuItem: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };