import { OnDestroyMixin } from '@w11k/ngx-componentdestroyed';
import { PresentationService } from '../core/presentation.service';
import { UIEntry } from './table-of-content-view.component';
export declare class TableOfContentComponent extends OnDestroyMixin {
    private readonly service;
    private readonly showCoordinates$;
    set showCoordinates(val: boolean);
    private readonly coordinatesSeparator$;
    set coordinatesSeparator(val: string);
    private readonly depth$;
    constructor(service: PresentationService);
    set depth(val: number | undefined);
    entries: ListOfRecursiveArraysOrValues<UIEntry | undefined> | undefined;
}
