import { FileUploadStepResponse } from './Presentation'; export type NewFileUploadsResponse = Array<{ fields: { 'content-type'?: string; 'x-amz-meta-upload-id': string; presigned_url: string; }; path: string[]; }>; export type FileUploadResponse = { id: string; filename: string; content_type: string; content_length: number; url: string; deleted_at: null; completed_steps: FileUploadStepResponse[]; created_at: string; }; export type FileUploadRequest = { id: string; filename: string; 'content-length': number; 'content-type': string; url: string; };