import TerraElement from '../../internal/terra-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary A collection of breadcrumb items that shows the current page's location in the site hierarchy. * @documentation https://terra-ui.netlify.app/components/breadcrumbs * @status stable * @since 1.0 * * @slot - The breadcrumb items. Typically `` elements. * * @csspart base - The component's base wrapper. * @csspart nav - The navigation container. * * @cssproperty --terra-breadcrumbs-gap - The space between breadcrumbs. */ export default class TerraBreadcrumbs extends TerraElement { static styles: CSSResultGroup; /** Accessible label for the breadcrumb navigation. */ ariaLabel: string; /** Color theme of the breadcrumbs, matching the Horizon Design System. */ theme: 'light' | 'dark'; render(): import("lit-html").TemplateResult<1>; }