import { Breakpoint } from '../utils/breakpoints'; /** * @internal */ export declare class MenuExpandIcon { /** i18n label for 'Expand' button */ i18nExpand: string; /** i18n label for 'Collapse' button */ i18nCollapse: string; /** 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; getSmallScreenIcon(): any; getLargeScreenIcon(): any; getMenuIcon(): any; render(): any; }