import { LitElement } from "lit"; declare interface Inputs { text: string; modelid: string; apikey: string; } declare class SummarizationNode extends LitElement { private cachedInputs?; private cachedOutput?; private hf?; constructor(); render(): void; runWithInputs(inputs: Inputs): Promise; } declare const _default: { nodeSpec: import("@visualblocks/custom-node-types").NodeSpec; nodeImpl: typeof SummarizationNode; }; export default _default;