import { UnauthenticatedCommand } from './BaseCommand.ts'; export interface UploadOptions { file: string; createUploadEndpoint?: string; resumeUploadEndpoint?: string; assemblyUrl: string; field?: string; } export declare class UploadCommand extends UnauthenticatedCommand { static paths: string[][]; static usage: import("clipanion").Usage; file: string; tusEndpoint: string | undefined; assemblyUrl: string; createUploadEndpoint: string | undefined; resumeUploadEndpoint: string | undefined; field: string | undefined; protected run(): Promise; } //# sourceMappingURL=upload.d.ts.map