interface TaskDescriptionEditorProps { initialValue?: string; placeholder?: string; onChange: (html: string) => void; } export default function TaskDescriptionEditor({ initialValue, placeholder, onChange, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};