import { default as React } from 'react';
import { ComplexTextEditorStyles } from '../theme';
export interface RichTextEditorProps {
    value: string;
    onChange: (html: string) => void;
    minRows?: number;
    styles?: ComplexTextEditorStyles;
}
export declare function RichTextEditor({ value, onChange, minRows, styles: editorStyles, }: RichTextEditorProps): React.JSX.Element;
export default RichTextEditor;
//# sourceMappingURL=index.d.ts.map