import { type CustomItemProps, type CustomItemComponentProps as MenuCustomItemComponentProps } from '@atlaskit/menu'; export interface CustomItemComponentProps extends MenuCustomItemComponentProps { } interface CustomItemPropsHack { (props: CustomItemProps & { ref?: any; } & Omit): JSX.Element | null; } /** * Used to support any custom items needed by products alongside the Header and Footer patterns. * Specific implementation of headers and footers are provided in the examples folder. */ declare const CustomItem: CustomItemPropsHack; export default CustomItem;