import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class OrgTestApex extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    protected configInfo: any;
    protected testRunOutcome: string;
    protected testRunOutputString: string;
    protected statusMessage: string;
    protected coverageTarget: number;
    protected coverageValue: number;
    protected failingTestClasses: any[];
    private notifSeverity;
    private notifText;
    private notifAttachments;
    private notifAttachedFiles;
    private orgMarkdown;
    private notifButtons;
    run(): Promise<AnyJson>;
    private runApexTests;
    private processApexTestsFailure;
    private checkOrgWideCoverage;
    private checkTestRunCoverage;
}
