import { EventEmitter } from '../../stencil-public-runtime'; import { AnchorInterface, AnchorTarget } from '../button/button.interface'; export declare class BreadcrumbItem implements AnchorInterface { hostElement: HTMLIxBreadcrumbItemElement; /** * ARIA label for the button * Will be set as aria-label for the nested HTML button element * * @since 3.2.0 */ ariaLabelButton?: string; /** * Breadcrumb label */ label?: string; /** * Icon to be displayed next ot the label */ icon?: string; /** * URL for the button link. When provided, the button will render as an anchor tag. * * @since 4.0.0 */ href?: string; /** * Specifies where to open the linked document when href is provided. * * @since 4.0.0 */ target?: AnchorTarget; /** * Specifies the relationship between the current document and the linked document when href is provided. * * @since 4.0.0 */ rel?: string; /**@internal */ subtle: boolean; /**@internal */ invisible: boolean; /**@internal */ hideChevron: boolean; /** @internal */ isDropdownTrigger: boolean; /**@internal */ itemClick: EventEmitter; a11y: any; componentDidLoad(): void; componentWillLoad(): void; animationFadeIn(): void; render(): any; }