/** * 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<<2575ecb472f31c07c4274a7736b7fd34>> * * This file was translated from Flow by scripts/js-api/build-types/index.js. * Original file: packages/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js */ import * as React from "react"; import type { HostInstance } from "../../../src/private/types/HostInstance"; import type { ProgressBarAndroidProps } from "./ProgressBarAndroidTypes"; export type ProgressBarAndroidInstance = HostInstance; export type { ProgressBarAndroidProps }; type Omit = T extends any ? Pick> : T; declare let ProgressBarAndroid: (props: Omit, keyof { ref?: React.Ref | undefined; }> & { ref?: React.Ref | undefined; }) => React.ReactNode; /** * ProgressBarAndroid has been extracted from react-native core and will be removed in a future release. * It can now be installed and imported from `@react-native-community/progress-bar-android` instead of 'react-native'. * @see https://github.com/react-native-community/progress-bar-android * @deprecated */ declare const $$ProgressBarAndroid: typeof ProgressBarAndroid; declare type $$ProgressBarAndroid = typeof $$ProgressBarAndroid; export default $$ProgressBarAndroid;