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