/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LitElement, PropertyValueMap } from "lit"; import { LLMContent } from "../../types/types.js"; export declare class LLMOutputArray extends LitElement { #private; values: LLMContent[] | null; selected: number; mode: "visual" | "json"; static styles: import("lit").CSSResult; protected willUpdate(changedProperties: PropertyValueMap<{ values: LLMContent[] | null; }> | Map): void; protected updated(): void; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=llm-output-array.d.ts.map