import { type EventEmitter } from "../../stencil-public-runtime"; export declare class BreadcrumbItemLabel { /** Icon displayed inside the breadcrumb item. */ readonly icon: string; /** URL the breadcrumb item links to. */ readonly href: string; /** Where to open the link. */ readonly target: string; el: HTMLIfxBreadcrumbItemLabelElement; /** Fires with the icon wrapper element when it's ready. */ breadcrumbMenuIconWrapper: EventEmitter; componentDidLoad(): void; render(): any; }