import type { AgDefaultRegistry } from '../agDefaultRegistry'; import type { AgBaseRegistry } from '../agRegistry'; import type { AgWidgetState } from '../widgets/agWidgetType'; export interface AgStandaloneWidgetApi { destroy(): void; update(config: Partial>): void; getState(): AgWidgetState; } export interface AgStandaloneWidgetOptions { draggable?: boolean; }