export interface VersionedNativeModuleNamesCache {
    nativeModuleNames?: Promise<string[] | null>;
}
export declare const getVersionedNativeModuleNamesAsync: (cache: VersionedNativeModuleNamesCache, params: {
    projectRoot: string;
    sdkVersion: string | undefined;
}) => Promise<string[] | null>;
