1*af2ec015STomasz Sapeta/**
2*af2ec015STomasz Sapeta * Copyright (c) Meta Platforms, Inc. and affiliates.
3*af2ec015STomasz Sapeta *
4*af2ec015STomasz Sapeta * This source code is licensed under the MIT license found in the
5*af2ec015STomasz Sapeta * LICENSE file in the root directory of this source tree.
6*af2ec015STomasz Sapeta *
7*af2ec015STomasz Sapeta * @format
8*af2ec015STomasz Sapeta */
9*af2ec015STomasz Sapeta
10*af2ec015STomasz Sapetaimport {TurboModule} from './RCTExport';
11*af2ec015STomasz Sapeta
12*af2ec015STomasz Sapetaexport function get<T extends TurboModule>(name: string): T | null;
13*af2ec015STomasz Sapetaexport function getEnforcing<T extends TurboModule>(name: string): T;
14