import React from 'react'; import type { TriggerProps } from '@atlaskit/popup/types'; interface AppSwitcherProps extends Partial> { /** * Provide an accessible label, often used by screen readers. */ label: React.ReactNode; /** * Handler called on click. */ onClick?: React.MouseEventHandler; /** * Called when the mouse enters the element container. * Allows preloading popup components */ onMouseEnter?: React.MouseEventHandler; /** * An optional name used to identify events for [React UFO (Unified Frontend Observability) press interactions](https://developer.atlassian.com/platform/ufo/react-ufo/react-ufo/getting-started/#quick-start--press-interactions). For more information, see [React UFO integration into Design System components](https://go.atlassian.com/react-ufo-dst-integration). */ interactionName?: string; /** * Indicates that the button is selected. */ isSelected?: boolean; } /** * __App switcher__ * * The trigger button for the app switcher. Allows users to switch between Atlassian products. */ export declare const AppSwitcher: React.ForwardRefExoticComponent & React.RefAttributes>; export {};