import { Breakpoint } from '../utils/breakpoints'; /** * @internal */ export declare class MenuExpandIcon { /** Whether the menu expand icon displays the expanded state or not */ expanded: boolean; /** Controls which icon is displayed */ breakpoint?: Breakpoint; /** Display as pinned */ pinned: boolean; /** * Accessibility label for the menu expand icon * @deprecated This prop is no longer used as the component is hidden from screen readers (aria-hidden="true"). Will be removed in 5.0.0 */ ixAriaLabel?: string; getSmallScreenIcon(): any; getLargeScreenIcon(): any; getMenuIcon(): any; render(): any; }