import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class OrgMissingItems extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    static requiresProject: boolean;
    protected folder: string;
    protected targetOrgUsernameAlias: string | null;
    protected packageXmlFull: string | null;
    protected debugMode: boolean;
    protected standardFields: string[];
    protected standardSuffixes: string[];
    run(): Promise<AnyJson>;
}
