import type { IPluginAPI } from 'build-scripts'; interface ICheckFunction { (packageName: string): boolean; } export declare type IRule = ICheckFunction | string | RegExp | string[]; export interface IRemoteOptions { activeInBuild: boolean; include?: IRule; exclude?: IRule; autoDetect?: boolean; bootstrap?: string; } declare const remoteRuntime: (api: IPluginAPI, options: IRemoteOptions | boolean) => Promise; export default remoteRuntime;