import { Command, flags } from '@oclif/command';
export default class Test extends Command {
    static description: string;
    static examples: string[];
    static strict: boolean;
    static flags: flags.Input<any>;
    static args: {
        name: string;
        required: boolean;
    }[];
    run(): Promise<import("@reactant/types").ActionResult>;
}
