import { LitElement, PropertyValueMap } from 'lit'; import { BpTypeElement } from '@blueprintui/components/internals'; /** * ```typescript * import '@blueprintui/components/include/breadcrumb.js'; * ``` * * ```html * * Home * Parent page *

Current page

*
* ``` * * @summary The breadcrumb component is used to show the user's current location, and provides an easy way to navigate back to previous sections. * @element bp-breadcrumb * @since 1.0.0 * @slot - breadcrumb items * @slot separator - separator * @part separator * @cssprop --font-size * @cssprop --font-weight * @cssprop --color * @cssprop --gap */ export declare class BpBreadcrumb extends LitElement implements Pick { #private; static styles: CSSStyleSheet[]; render(): import("lit").TemplateResult<1>; protected firstUpdated(props: PropertyValueMap): void; }