import '@operato/data-tree'; import '@operato/context/ox-context-page-toolbar.js'; import './kpi-view'; import { PropertyValues } from 'lit'; import { PageView } from '@operato/shell'; import { KpiImporter } from './kpi-importer'; import { KpiView } from './kpi-view'; declare const KpiTreePage_base: (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/dedupe-mixin").Constructor; export declare class KpiTreePage extends KpiTreePage_base { static styles: import("lit").CSSResult[]; static get scopedElements(): { 'kpi-importer': typeof KpiImporter; }; root?: any; selected?: any; kpi?: any; modified: boolean; appendable: boolean; kpiView: KpiView; get context(): { title: string; help: string; actions: { icon: string; title: string; action: () => Promise; emphasis: { danger: boolean; }; }[]; exportable: { name: string; data: () => Promise; }; importable: { handler: (records: any[]) => Promise; }; toolbar: boolean; }; render(): import("lit-html").TemplateResult<1>; updated(changes: PropertyValues): void; onSelect(e: CustomEvent): void; reset(): void; create(): Promise; save(): Promise; delete(): Promise; pageInitialized(lifecycle: any): Promise; pageUpdated(changes: any, lifecycle: any): Promise; fetch(): Promise; exportHandler(): Promise; importHandler(records: any[]): Promise; } export {};