/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @generated SignedSource<> * * This file was translated from Flow by scripts/js-api/build-types/index.js. * Original file: packages/react-native/Libraries/Utilities/codegenNativeComponent.js */ import type { HostComponent } from "../../src/private/types/HostComponent"; type NativeComponentOptions = Readonly<{ interfaceOnly?: boolean; paperComponentName?: string; paperComponentNameDeprecated?: string; excludedPlatforms?: ReadonlyArray<"iOS" | "android">; }>; export type NativeComponentType = HostComponent; declare function codegenNativeComponent(componentName: string, options?: NativeComponentOptions): NativeComponentType; declare const $$codegenNativeComponent: typeof codegenNativeComponent; declare type $$codegenNativeComponent = typeof $$codegenNativeComponent; export default $$codegenNativeComponent;