/** * Minimized window bar component * Displays a compact bar for minimized windows with restore/maximize/close actions */ import React from 'react'; import { Theme } from '../types'; export interface MinimizedBarProps { /** Unique panel ID */ panelId: string; /** Primary title text */ title: string; /** Secondary subtitle text */ subtitle?: string; /** Border color (hex or rgb) */ borderColor: string; /** Theme configuration */ theme: Theme; /** Callback when restore button clicked */ onRestore: () => void; /** Callback when maximize button clicked */ onMaximize: () => void; /** Callback when close button clicked */ onClose: () => void; /** Disable close button when running */ isRunning?: boolean; } /** * Minimized window bar - shows title and action buttons for minimized windows */ export declare const MinimizedBar: React.FC; //# sourceMappingURL=MinimizedBar.d.ts.map