import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class RefreshTask extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    static requiresProject: boolean;
    protected debugMode: boolean;
    protected noPull: boolean;
    protected mergeBranch: null;
    run(): Promise<AnyJson>;
    private runRefresh;
}
