import { EventEmitter } from '../../stencil-public-runtime';
export interface IBreadcrumbItem {
    /** (required) The text to display on the breadcrumb */
    label: string;
    /** (optional) Sets this breadcrumb styling to be the active one (usually the last one) */
    active?: boolean;
}
export interface IBreadcrumbItemEvents {
    /** Emitted when the user clicks on the breadcrumb */
    breadcrumbItemClick: EventEmitter<IBreadcrumbItem>;
}
