/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LitElement, PropertyValueMap } from "lit"; import { AllowedLLMContentTypes, LLMContent } from "../../../types/types.js"; export declare class LLMInputArray extends LitElement { #private; values: LLMContent[] | null; description: string | null; minimal: boolean; minItems: number; allow: AllowedLLMContentTypes; selected: number; static styles: import("lit").CSSResult; processAllOpenParts(): Promise | undefined; hasMinItems(): boolean; protected willUpdate(changedProperties: PropertyValueMap<{ values: LLMContent[] | null; }> | Map): void; protected updated(): void; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=llm-input-array.d.ts.map