import { Editor } from '@tiptap/core'; import { Dispatch, FC, SetStateAction } from 'react'; export interface BubbleColorMenuItem { name: string; color: string; } interface ColorSelectorProps { editor: Editor; isOpen: boolean; setIsOpen: Dispatch>; } export declare const ColorSelector: FC; export {};