interface GenProxyCodeOptions { is_uni_modules: boolean; name: string; namespace: string; } export declare function genProxyCode(module: string, options: GenProxyCodeOptions): Promise; export declare function resolveRootIndex(module: string, options: GenProxyCodeOptions): string | false; export declare function resolvePlatformIndex(platform: 'app-android' | 'app-ios', module: string, options: GenProxyCodeOptions): string | false; export {};