/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LitElement } from "lit"; import { AllowedLLMContentTypes, LLMContent } from "../../../types/types.js"; import { DataStore } from "@google-labs/breadboard"; export declare class LLMInput extends LitElement { #private; value: LLMContent | null; description: string | null; minimal: boolean; minItems: number; allow: AllowedLLMContentTypes; dataStore?: { instance: DataStore | null; }; static styles: import("lit").CSSResult; connectedCallback(): void; getContainerHeight(): number; setContainerHeight(height: number): void; hasMinItems(): boolean; protected updated(): void; processAllOpenParts(): Promise; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=llm-input.d.ts.map