/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile BreadCrumb Item component. * * @tag nile-breadcrumb-item * */ export declare class NileBreadcrumbItem extends NileElement { /** * The styles for BreadcrumbItem * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; private isLast; /** * Render method * @slot This is a slot test */ separator: string; private handleClick; render(): TemplateResult; } export default NileBreadcrumbItem; declare global { interface HTMLElementTagNameMap { 'nile-breadcrumb-item': NileBreadcrumbItem; } }