import { type ReactElement, type ReactNode } from 'react'; import { type WithChildren, type AriaLabelingProps } from '@dynatrace/strato-components/core'; /** * @public */ export interface MenuTriggerProps extends WithChildren, AriaLabelingProps { } /** * Allows to check if a ReactNode is a MenuTrigger element. * @internal * */ export declare function isTrigger(node: ReactNode): node is ReactElement; /** * The button that toggles the dropdown menu. * By default, the Content will position itself against the trigger. * @public */ export declare const Trigger: (props: MenuTriggerProps & import("react").RefAttributes) => React.ReactElement | null;