export interface PPUuploadInput { id: string; width: number; height: number; } export interface PPUUploadOutput { urls: { url: string; size: number; }[]; } export interface PPUUploadSuccessOutput { ppu: string; }