/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LitElement, nothing } from "lit"; type JSONObjectValue = null | undefined | number | string | boolean | JSONObject; interface JSONObject { [key: string]: JSONObjectValue; } export declare class JSONTree extends LitElement { #private; json: JSONObject | null; autoExpand: boolean; static styles: import("lit").CSSResult; render(): import("lit-html").TemplateResult<1> | typeof nothing; } export {}; //# sourceMappingURL=json-tree.d.ts.map