/**
 * Enhanced Upload command implementation with progress tracking
 */
import { CLIOptions, Command } from '../../types';
/**
 * Main upload command that orchestrates the entire upload process
 */
export declare class UploadCommand implements Command {
    readonly name = "upload";
    readonly description = "Upload Playwright test reports to TestDino";
    /**
     * Execute the upload command with enhanced progress tracking
     */
    execute(options: CLIOptions): Promise<void>;
    /**
     * Log verbose configuration information
     */
    private logVerboseInfo;
    /**
     * Handle dry run mode with comprehensive validation
     */
    private handleDryRun;
    /**
     * Enhanced error handling with actionable feedback
     */
    private handleUploadError;
}
//# sourceMappingURL=upload.d.ts.map