/// /** * @jsxRuntime classic * @jsx jsx */ import type { CustomItemComponentProps, CustomItemProps } from '../types'; interface CustomItemTypeGenericHackProps { (props: CustomItemProps & { ref?: any; } & Omit): JSX.Element | null; } /** * __Custom item__ * * A custom item is used to populate a menu with items that can be any element. * * - [Examples](https://atlaskit.atlassian.com/packages/design-system/menu/docs/custom-item) * - [Code](https://atlaskit.atlassian.com/packages/design-system/menu) */ declare const CustomItem: CustomItemTypeGenericHackProps; export default CustomItem;