import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class MetadataStatus extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    protected static supportsDevhubUsername: boolean;
    static requiresProject: boolean;
    private objectFileDirectory;
    protected fieldsWithoutDescription: any[];
    protected outputFile: string;
    protected outputFilesRes: any;
    private nonCustomSettingsFieldDirectories;
    private ignorePatterns;
    run(): Promise<AnyJson>;
    private filterOutCustomSettings;
    private verifyFieldDescriptions;
    private parseXmlStringAsync;
    private readFileAsync;
    private buildCsvFile;
}
