import { LitElement, TemplateResult, CSSResult } from 'lit'; declare global { interface HTMLElementTagNameMap { 'forge-ai-thought-base': ThoughtBaseComponent; } } export declare const ThoughtBaseComponentTagName: keyof HTMLElementTagNameMap; /** * @tag forge-ai-thought-base * * @slot icon - Icon to display in the header * @slot title - Title content for the header * @slot - Main content area */ export declare class ThoughtBaseComponent extends LitElement { static styles: CSSResult; /** The step number for this thought */ step?: number; render(): TemplateResult; }