import { LitElement } from 'lit';
/**
 * A breadcrumb-item to be used with the breadcrumbs component.
 *  @element uui-breadcrumb-item
 *  @slot - This slot displays elements inside the breadcrumb
 *  @csspart separator - change the content of the after element of this part to change the separator
 */
export declare class UUIBreadcrumbItemElement extends LitElement {
    connectedCallback(): void;
    /**
     * Specifies the link href.
     * @type {String}
     * @default undefined
     */
    href?: string;
    /**
     * Specifies if the element is the last item in the uui-breadcrumbs. Last item will not render as a link
     * @type {Boolean}
     * @attr last-item
     * @default 'false'
     */
    lastItem: boolean;
    private _onKeydown;
    renderLinkAndSeparator(): import("lit").TemplateResult<1>;
    renderCurrent(): import("lit").TemplateResult<1>;
    render(): import("lit").TemplateResult<1>;
    static styles: import("lit").CSSResult[];
}
declare global {
    interface HTMLElementTagNameMap {
        'uui-breadcrumb-item': UUIBreadcrumbItemElement;
    }
}
