import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class MonitorAll extends SfCommand<any> {
    static title: string;
    static monitoringCommandsDefault: {
        key: string;
        title: string;
        command: string;
        frequency: string;
    }[];
    static description: string;
    static examples: string[];
    static flags: any;
    static requiresProject: boolean;
    protected static triggerNotification: boolean;
    protected debugMode: boolean;
    static getDefaultCommandsMarkdown(): string;
    run(): Promise<AnyJson>;
}
