import { LitElement, TemplateResult, CSSResult } from 'lit'; declare global { interface HTMLElementTagNameMap { 'forge-ai-artifact': AiArtifactComponent; } } export declare const AiArtifactComponentTagName: keyof HTMLElementTagNameMap; /** * @tag forge-ai-artifact * * @slot start - Content for the start (left) side of the toolbar, typically used for titles or headings * @slot actions - Action buttons for the end (right) side of the toolbar * @slot - Main content area below the toolbar * * @cssproperty --forge-theme-surface - Surface color override for the toolbar (defaults to transparent) */ export declare class AiArtifactComponent extends LitElement { static styles: CSSResult; render(): TemplateResult; }