/** * Codegen spec for MobileAIFloatingOverlay native view. * * This file is required by React Native's Codegen (New Architecture / Fabric). * It defines the TypeScript interface for the native view. During the build, * Codegen uses this spec to generate C++ glue code that bridges JS and native. * * Consumers don't use this directly — use FloatingOverlayWrapper.tsx instead. * * Naming convention: file must end in NativeComponent.ts (Codegen convention). */ import type { ViewProps } from 'react-native'; import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes'; export interface NativeProps extends ViewProps { windowX?: Int32; windowY?: Int32; windowWidth?: Int32; windowHeight?: Int32; } declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType; export default _default; //# sourceMappingURL=FloatingOverlayNativeComponent.d.ts.map