declare class MdapiPullCommand {
    [property: string]: any;
    constructor();
    validate(context: any): any;
    getPreExecuteMessage({ orgId, username }: {
        orgId: any;
        username: any;
    }): any;
    execute(context: any): Promise<any[] | {
        pulledSource: any[];
    }>;
    /**
     * this indicated to index.js this command should produce tabular output.
     *
     * @returns {*[]}
     */
    getColumnData(): {
        key: string;
        label: any;
    }[];
}
export = MdapiPullCommand;
