import { LitElement } from 'lit'; import type { WidgetStatus } from '../types.js'; /** * Minimized state of an active voice session — a small circular FAB with a * pulsing ring indicating the call is still live. Clicking anywhere on it * dispatches `restore` to return to the expanded session panel. */ export declare class WidgetMinimized extends LitElement { static styles: import("lit").CSSResult[]; status: WidgetStatus; /** When true, the user has muted their microphone -- the listening icon shows a muted variant. */ muted: boolean; render(): import("lit").TemplateResult<1>; private renderStatusIcon; private handleClick; } declare global { interface HTMLElementTagNameMap { 'vcw-minimized': WidgetMinimized; } }