import { Action } from "./../index";
export declare class Status extends Action {
    constructor();
    run({ connection }: {
        connection: any;
    }): Promise<{
        id: string;
        actionheroVersion: any;
        name: any;
        description: any;
        version: any;
        uptime: number;
        consumedMemoryMB: number;
        resqueTotalQueueLength: number;
        nodeStatus: string;
        problems: string[];
    }>;
}
