/** * @license * Copyright 2024 Nuraly, Laabidi Aymen * SPDX-License-Identifier: MIT */ import { nothing, TemplateResult } from 'lit'; /** * Data required for rendering the empty state */ export interface EmptyStateTemplateData { hasNodes: boolean; } /** * Render the empty state when no nodes exist */ export declare function renderEmptyStateTemplate(data: EmptyStateTemplateData): TemplateResult | typeof nothing; //# sourceMappingURL=empty-state.template.d.ts.map