import Runner from '../../runner'; import { Workspace } from '../../workspace'; import createConfig, { Options as ConfigOptions } from './config'; export interface Options extends ConfigOptions { watch: boolean; cacheDirectory: string | undefined; debug: boolean; maxWorkers: number | undefined; testNamePattern: string | undefined; testRegex: string; updateSnapshot: boolean; coverage: boolean; graphql: boolean; } export { createConfig }; export default function runJest(workspace: Workspace, { watch, cacheDirectory, debug, updateSnapshot, testNamePattern, testRegex, coverage, maxWorkers, graphql, ...options }: Partial, runner: Runner): Promise; //# sourceMappingURL=index.d.ts.map