import { Command } from "@xieyuheng/enchanter/lib/command"; import { CommandRunner } from "@xieyuheng/enchanter/lib/command-runner"; declare type Args = { paper: string; }; export declare class SnapshotCommand extends Command { name: string; description: string; args: { paper: import("@xieyuheng/ty/lib/schemas").StringSchema; }; help(runner: CommandRunner): string; execute(argv: Args): Promise; } export {};