import { IConfig } from '@oclif/config'; export default class Yarn { config: IConfig; constructor({ config }: { config: IConfig; }); get bin(): string; fork(modulePath: string, args?: string[], options?: any): Promise; exec(args: string[] | undefined, opts: { cwd: string; verbose: boolean; }): Promise; }