import { MouseEventHandler } from "react"; export interface EditableProps { content: string; className?: string; placeholder: string; onContentChange: (content: string) => void; handleClick?: MouseEventHandler; disabled?: boolean; }