interface RichTextEditorProps { value: string; onChange: (value: string) => void; placeholder?: string; className?: string; disabled?: boolean; 'data-cy'?: string; } /** * Simple Rich Text Editor component * * Currently uses a textarea with formatting toolbar hints. * Can be upgraded to TipTap or similar for full WYSIWYG support. * * Supports basic HTML formatting through markdown-like shortcuts: * - **bold** or bold * - *italic* or italic * - [link text](url) or link text */ export declare function RichTextEditor({ value, onChange, placeholder, className, disabled, 'data-cy': dataCy, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=rich-text-editor.d.ts.map