import type { HybridObject } from 'react-native-nitro-modules'; export interface NitroSystemNavigationBar extends HybridObject<{ ios: 'swift'; android: 'kotlin'; }> { getNavigationBarHeight(): number; hideNavigationBar(): void; showNavigationBar(): void; enableImmersiveSticky(): void; exitImmersiveMode(): void; /** * Set the navigation bar color. * @param color integer color value (e.g., 0xff0000ff for blue) * @param isTranslucent optional flag to enable translucent navigation */ setNavigationBarColor(color: number, isTranslucent?: boolean): void; /** * Set the navigation bar text/icon appearance (light or dark). * @param isLight true for light icons/text, false for dark */ setLightNavigationBar(isLight: boolean): void; }