import Store from '@mjcloud/redux'; import { ValueReduceBase } from '@mjcloud/reduce'; import { IRichTextboxState, IRichTextboxInitialStateParams, IRichTextboxUpdateEditorStateParams } from './typings'; export declare class RichTextboxReduce extends ValueReduceBase { initialState(store: Store, params: IRichTextboxInitialStateParams): IRichTextboxState; updateValue(store: Store, params: any): IRichTextboxState; updateEditorState(store: Store, params: IRichTextboxUpdateEditorStateParams): IRichTextboxState; } declare const _default: RichTextboxReduce; export default _default;