///
///
import { ChildProcess } from 'child_process';
import type { Stream } from 'stream';
export type IPlugin = (...args: Array) => Promise;
export default function pluginLoader(feature: 'client' | 'functions', name: string, source?: string): Promise;