import React from 'react'; import type { ButtonHandlerType, FormatType, SelectOnChangeHandler } from './types'; declare type Props = { id: string; format?: FormatType; testIds?: { headerSelect?: string; boldButton?: string; italicButton?: string; unorderedListButton?: string; orderedListButton?: string; linkButton?: string; emojiButton?: string; }; onBoldClick?: ButtonHandlerType; onItalicClick?: ButtonHandlerType; onHeaderChange?: SelectOnChangeHandler; onUnorderedClick?: ButtonHandlerType; onOrderedClick?: ButtonHandlerType; }; export declare const ALLOWED_HEADER_TYPE = "3"; export declare const RichTextEditorToolbar: React.ForwardRefExoticComponent>; export default RichTextEditorToolbar; //# sourceMappingURL=RichTextEditorToolbar.d.ts.map