import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Animation states for the menu bar content */ type AnimationState = 'closed' | 'opening' | 'open' | 'closing'; /** * DropdownMenuBarContent - Container for menu bar dropdown content */ export declare class DropdownMenuBarContentComponent { private readonly menuStack; private readonly templateRef; get template(): TemplateRef; private readonly isOpen; private readonly isAnimatingOpen; /** * Custom CSS classes */ class: import("@angular/core").InputSignal; /** * Size variant */ size: import("@angular/core").InputSignal<"xs" | "sm" | "md" | "lg" | "xl">; /** Whether to apply shadow */ shadow: import("@angular/core").InputSignal; /** * Emitted when the menu is opened */ opened: import("@angular/core").OutputEmitterRef; /** * Emitted when the menu is closed */ closed: import("@angular/core").OutputEmitterRef; /** * Computed data state for ARIA and animations */ dataState: import("@angular/core").Signal; /** * Handle ESC key press */ onEscapeKey(event: KeyboardEvent): void; /** * Handle menu opened event */ onMenuOpened(): void; /** * Handle menu closed event */ onMenuClosed(): void; /** * Handle animation end */ onAnimationEnd(event: AnimationEvent): void; /** * Close this menu and all child menus */ closeMenu(): void; /** * Computed CSS classes for the menu */ menuClass: () => string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};