import { APIResponseSuccess, CommandLineInputs, CommandLineOptions, CommandMetadata } from '../../definitions'; import { Command } from '../../lib/command'; export declare class MonitoringSyncSourcemapsCommand extends Command { getMetadata(): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; syncSourcemap(file: string, snapshotId: string, appVersion: string, commitHash: string, appflowId: string, token: string): Promise; uploadSourcemap(sourcemap: APIResponseSuccess, file: string): Promise; }