import { BasePlugin } from '@midwayjs/fcli-command-core'; export declare class TestPlugin extends BasePlugin { commands: { test: { usage: string; lifecycleEvents: string[]; options: { cov: { usage: string; shortcut: string; }; watch: { usage: string; shortcut: string; }; reporter: { usage: string; shortcut: string; }; file: { usage: string; shortcut: string; }; }; }; }; hooks: { 'test:test': () => Promise; }; }