/** * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * @format */ /** * Search for a single manifest adjacent to the package above a directory or * CWD */ export declare function findManifest(cwd?: string): Promise; /** * Enumerate the override manifests reachable from CWD, preferring the local * package if run within a package with an override manifest, otherwise * searching for packages in a monorepo */ export declare function findAllManifests(): Promise; /** * Search for the package.json for this package (react-native-platform-override) */ export declare function findThisPackage(): Promise;