import { type AriaLabelingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface MenuSubTriggerProps extends WithChildren, AriaLabelingProps { /** * Whether the menu trigger item is disabled. * If true, it prevents the user from interacting with the item. */ disabled?: boolean; /** * Optional text used for typeahead purposes. By default, the typeahead * behavior will use the .textContent of the item. Use this when the content * is complex, or you have non-textual content inside. */ textValue?: string; } /** * An item that opens a submenu. Used in combination with a `Menu.Sub`. * Must not be rendered inside a root Menu. * @public */ export declare const SubTrigger: (props: MenuSubTriggerProps & import("react").RefAttributes) => React.ReactElement | null;