/** * Debug Panel - Chrome DevTools-style debugging interface */ import type { DebugData } from './collector'; export interface PanelOptions { /** Panel position: 'bottom' (default), 'right', or 'popup' */ position?: 'bottom' | 'right' | 'popup'; /** Initial height in pixels (for bottom dock) */ height?: number; /** Initial width in pixels (for right dock) */ width?: number; /** Start with panel open */ open?: boolean; /** Dark mode (default: true) */ dark?: boolean; } export declare function generateDebugPanel(data: DebugData, options?: PanelOptions): string; //# sourceMappingURL=panel.d.ts.map