import { Command } from "./command";
import { Field } from "./field/field";
export declare class TestCommand extends Command {
    static readonly NAME: string;
    static readonly ALIAS: string[];
    static readonly FIELDS: Field[];
    static readonly DESCRIPTION: string;
    constructor(workspace: string, params: string[]);
    run(): Promise<void>;
    printSomething(): void;
}
