'use client'; // eslint-disable-next-line @react-native/no-deep-imports import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; import type { ViewProps } from 'react-native'; import type { WithDefault } from 'react-native/Libraries/Types/CodegenTypes'; export type HeaderSubviewTypes = | 'back' | 'right' | 'left' | 'title' | 'center' | 'searchBar'; export interface NativeProps extends ViewProps { type?: WithDefault; } export default codegenNativeComponent( 'RNSScreenStackHeaderSubview', { interfaceOnly: true, }, );