import { TestTaskOptions } from '@shopify/loom'; import yargs from 'yargs'; import { GlobalCliArguments, TaskContext } from '../common'; export interface TestCliArguments { ci?: boolean; watch?: boolean; coverage?: boolean; debug?: boolean; 'update-snapshots'?: boolean; 'test-name-pattern'?: string; pattern?: string; } export declare const test: yargs.CommandModule; export declare function runTests(taskContext: TaskContext, options: TestTaskOptions): Promise; //# sourceMappingURL=test.d.ts.map