export interface ImgVibesClasses { readonly root: string; readonly container: string; readonly image: string; readonly overlay: string; readonly progress: string; readonly placeholder: string; readonly error: string; readonly controls: string; readonly button: string; readonly prompt: string; readonly deleteOverlay: string; readonly dropZone: string; readonly uploadWaiting: string; } export interface RuntimeError { type: string; message: string; source?: string; lineno?: number; colno?: number; stack?: string; reason?: string; timestamp: string; errorType?: "SyntaxError" | "ReferenceError" | "TypeError" | "DatabaseError" | "Other"; } export * from "./img-vibes-types.js";