import { PropertyValueMap } from "lit"; import SgdsElement from "../../base/sgds-element"; /** * @summary Breadcrumb Item are navigational links used in Breadcrumb component * * @slot default - The link of the item. Pass in anchor tags into this slot */ export declare class SgdsBreadcrumbItem extends SgdsElement { static styles: import("lit").CSSResult[]; static dependencies: Record; /** Indicates the link matches the current location of the page. Programmatically handled by SgdsBreadcrumb to set this prop to true for the last breadcrumb item */ active: boolean; private _preventNavigation; updated(changedProperties: PropertyValueMap): void; render(): import("lit").TemplateResult<1>; } export default SgdsBreadcrumbItem;