import React from 'react'; export interface IDynamicTextProps { field: any; name?: string; onChange?: (val: any) => void; } declare const RichText: React.FC; export default RichText;