///
///
import * as cp from 'child_process';
import { flags, SfdxCommand } from '@salesforce/command';
export declare type RunResult = {
message: string;
jestExitCode: number;
};
export default class Run extends SfdxCommand {
static description: string;
static longDescription: string;
static examples: string[];
static args: {
name: string;
}[];
protected static requiresProject: boolean;
protected static flagsConfig: {
debug: flags.Discriminated>;
watch: flags.Discriminated>;
};
run(): Promise;
runJest(args: string[]): cp.SpawnSyncReturns;
private getExecutablePath;
}