import React from 'react'; import type { ReactNode } from 'react'; export interface WindowProps { children: React.ReactNode; titleBar?: React.ReactNode; titleBarText?: string; mainAppIsMinimized?: boolean; mainAppOrder?: number; showSectionsButton?: boolean; rightActions?: ReactNode; titleBarIcon?: string; minWidth?: string | number; maxWidth?: string | number; minHeight?: string | number; maxHeight?: string | number; }