import React from 'react'; import './style'; declare const _default: React.MemoExoticComponent; export default _default; declare function RichText({ id, style, className, events, label, labelVisible, value, readOnly, layout, disabled, requiredFlag, onChange, decorator, acceptTypes, initialContent, placeholder, iconPack, maxSize, cloudPath, visible, }: { id: any; style: any; className: any; events: any; label: any; labelVisible: any; value: any; readOnly: any; layout: any; disabled: any; requiredFlag: any; onChange: any; decorator?: any; acceptTypes: any; initialContent: any; placeholder: any; iconPack: any; maxSize: any; cloudPath: any; visible: any; }): JSX.Element; declare namespace RichText { var whyDidYouRender: boolean; var defaultProps: WdRichTextProps; } export interface WdRichTextProps { id?: string; style?: any; label?: string; labelVisible?: boolean; visible?: boolean; layout?: string; requiredFlag?: boolean; decorator?: any; initialContent?: string; value?: string; readOnly?: boolean; placeholder?: string; exteralPlugins?: Plugin[]; toolbar?: string | { static: string; popover?: string; }; iconPack?: Record; languagePack?: Record; events?: any; onChange?: (v: any) => void; acceptTypes?: any[]; acceptAudioTypes?: any[]; acceptVideoTypes?: any[]; disabled?: boolean; maxSize?: number; name?: string; cloudPath?: string; }