/** * @jsxRuntime classic */ import React, { type ComponentType } from 'react'; import { type EndItemProps } from './end-item'; interface HelpProps extends Omit { /** * The component to render as the badge. * You are recommended to use the Badge component from `@atlaskit/badge`. */ badge?: ComponentType; } /** * __Help__ * * The trigger button for the help menu in the top navigation bar. */ export declare const Help: React.ForwardRefExoticComponent & React.RefAttributes>; export {};