"use client" import { SharedMessageEditor, type UploadedMessageEditorImage, } from "@/components/chat/shared-message-editor" type CustomerMessageEditorProps = { disabled?: boolean uploadingAsset?: boolean onSend: (html: string) => Promise onUploadImage: (file: File) => Promise onSendAttachment: (file: File) => Promise } export function CustomerMessageEditor({ disabled = false, uploadingAsset = false, onSend, onUploadImage, onSendAttachment, }: CustomerMessageEditorProps) { return ( ) }