import { default as React, ReactNode } from 'react';
export interface GlobalStatusBarProps {
/** Application name */
appName?: string;
/** Application domain (organization/mission) */
appDomain?: string;
/** Application version */
appVersion?: string;
/** Username to display */
username?: string;
/** Left slot content (app switcher, etc.) */
leftSlot?: ReactNode;
/** Center slot content (typically clock) */
centerSlot?: ReactNode;
/** Right slot content (monitoring icons, controls) */
rightSlot?: ReactNode;
/** Additional children */
children?: ReactNode;
/** Custom className */
className?: string;
}
/**
* GlobalStatusBar - Pure React global status bar
*
* Primary header component for space applications. Includes slots for:
* - App switcher (left)
* - Global clock (center)
* - Monitoring icons (right)
*
* @example
* ```tsx
* }
* rightSlot={}
* />
* ```
*/
export declare const GlobalStatusBar: React.NamedExoticComponent;