export interface ImageProvider {
  createImage(prompt: string): Promise<any>;
  editImage(prompt: string, image: string): Promise<any>;
}