import type { PopoverProps } from '@os-design/core'; import { EditorState } from 'draft-js'; import React from 'react'; import type { StyleToolbarItem } from './utils/defaultStyleToolbarItems.js'; interface StyleToolbarProps extends Omit { items: StyleToolbarItem[]; value: EditorState; onChange: (value: EditorState) => void; } declare const StyleToolbar: React.FC; export default StyleToolbar; //# sourceMappingURL=StyleToolbar.d.ts.map