import { LitElement, TemplateResult } from "lit"; /** * Shows the navigation structure for the current page. * * Renders direct child links and non-link elements as a breadcrumb trail, inserts separators between items, and exposes the trail as navigation. * * [Warp component reference](https://warp-ds.github.io/docs/components/breadcrumbs/frameworks/elements) */ declare class WarpBreadcrumbs extends LitElement { private _internals; private _defaultLabel; /** * Accessible label for the breadcrumb navigation. * Defaults to the localized "You are here" label. Set `aria-label` when the default label is not specific enough for the page. */ ariaLabel: string | null; static styles: import("lit").CSSResult[]; constructor(); private get _label(); private _children; connectedCallback(): void; render(): TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "w-breadcrumbs": WarpBreadcrumbs; } } export { WarpBreadcrumbs };