import { SandboxProcessObject, SandboxUserAuthResponse } from './sandboxOrgApi';
import { UX } from '@salesforce/command';
export declare class SandboxProgressReporter {
    static logSandboxProcessResult(ux: UX, processRecord: SandboxProcessObject, sandboxRes: SandboxUserAuthResponse): void;
    static logSandboxProgress(ux: UX, processRecord: SandboxProcessObject, pollIntervalInSecond: number, retriesLeft: number, waitingOnAuth: boolean): void;
    static getSecondsToHms(waitTimeInSec: number): string;
}
