import type { Job } from './Job'; import type { TimeSpan } from './TimeSpan'; export declare type UploadBlob = (Job & { /** * Get or set the key of the blob to upload. If no key is specified then a new unique key will be generated */ key?: string | null; /** * Get or set if existing blobs should be replaced */ replace?: boolean; duration?: TimeSpan; });