import { Command } from '@oclif/core';
export default class Status extends Command {
    static description: string;
    static examples: {
        description: string;
        command: string;
    }[];
    /**
     * Command Entry Point
     */
    run(): Promise<void>;
}
