import { Command } from '../../cli'; declare const types: readonly ["check", "lint", "unit"]; declare type Args = { coverage: boolean; watch: boolean; updateSnapshot: boolean; type: typeof types extends ReadonlyArray ? T : never; }; declare const TestCommand: Command; export default TestCommand;