import { ChangeDetectorRef, EventEmitter, OnInit } from "@angular/core";
import { Subject } from "rxjs";
import { EventBus, IEvent } from "@nova-ui/bits";
import { IHasChangeDetector } from "../../../../types";
export declare class ListLeafItemComponent implements IHasChangeDetector, OnInit {
    changeDetector: ChangeDetectorRef;
    eventBus: EventBus<IEvent>;
    static lateLoadKey: string;
    icon: string;
    status: string;
    detailedUrl: string;
    label: string;
    canNavigate: boolean;
    url: string;
    navigated: EventEmitter<ListLeafItemComponent>;
    searchTerm: string;
    protected readonly destroy$: Subject<void>;
    onButtonClick(): void;
    constructor(changeDetector: ChangeDetectorRef, eventBus: EventBus<IEvent>);
    ngOnInit(): void;
}
