import { type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface MenuSubProps extends WithChildren { /** * The open state of the dropdown menu when it is initially rendered. Use when * you do not need to control its open state. */ defaultOpen?: boolean; /** * The controlled open state of the dropdown menu. Must be used in conjunction * with onOpenChange. */ open?: boolean; /** * Event handler called when the open state of the dropdown menu changes. * @param isOpen - true if the menu has been opened */ onOpenChange?: (isOpen: boolean) => void; } /** * @public */ export declare const Sub: (props: MenuSubProps) => import("react/jsx-runtime.js").JSX.Element;