import React from 'react'; interface NavigationContainerProps { children: React.ReactNode; onReady?: () => void; onStateChange?: () => void; } /** * 自定义导航容器 * 自动绑定navigationRef,支持全局导航 */ /** * 函数注释:导航容器(集成 KeyboardProvider 与安卓输入模式) * - Provider 置于应用最外层,提供统一的键盘控制上下文。 * - 安卓:在最早阶段设为 ADJUST_NOTHING,杜绝系统窗口 resize,避免“先挤上去再回归”的闪动。 */ export declare const NavigationContainer: React.FC; export {}; //# sourceMappingURL=NavigationContainer.d.ts.map