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