/*
 * This file is part of the Scandit Data Capture SDK
 *
 * Copyright (C) 2026- Scandit AG. All rights reserved.
 */

import { codegenNativeComponent, type HostComponent, type ViewProps } from 'react-native';


export interface NativeProps extends ViewProps {}

export default codegenNativeComponent<NativeProps>(
  'RNTDataCaptureView'
) as HostComponent<NativeProps>;
