import { Command } from "../../command"; import { CommandRunner } from "../../command-runner"; declare type Args = { program: string; glob: string; }; declare type Opts = { exclude?: string; }; export declare class TestCommand extends Command { name: string; description: string; args: { program: import("@xieyuheng/ty/lib/schemas").StringSchema; glob: import("@xieyuheng/ty/lib/schemas").StringSchema; }; opts: { exclude: import("@xieyuheng/ty/lib/schemas").UnionSchema; }; help(runner: CommandRunner): string; execute(argv: Args & Opts): Promise; } export {};