import { BaseCommand } from '@yarnpkg/cli'; import { Usage } from 'clipanion'; export default class WorkspacesListCommand extends BaseCommand { static paths: string[][]; static usage: Usage; since: string | boolean | undefined; recursive: boolean; noPrivate: boolean | undefined; verbose: boolean; json: boolean; execute(): Promise<0 | 1>; }