import Component from '../../components/breadcrumb-item/breadcrumb-item.js'; /** * @summary Breadcrumb items represent individual links inside a breadcrumb, typically one per level of the site * hierarchy. * @documentation https://webawesome.com/docs/components/breadcrumb-item * @status stable * @since 2.0 * * @slot - The breadcrumb item's label. * @slot start - An element, such as ``, placed before the label. * @slot end - An element, such as ``, placed after the label. * @slot separator - The separator to use for the breadcrumb item. This will only change the separator for this item. If * you want to change it for all items in the group, set the separator on `` instead. * * @csspart label - The breadcrumb item's label. * @csspart start - The container that wraps the `start` slot. * @csspart end - The container that wraps the `end` slot. * @csspart separator - The container that wraps the separator. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; export default reactWrapper;