import type { Editor as TiptapEditor } from '@tiptap/core'; interface ColorPickerButtonProps { editor: TiptapEditor; type: 'text' | 'highlight'; 'data-testid'?: string; } declare const ColorPickerButton: ({ editor, type, ...restProps }: ColorPickerButtonProps) => import("react/jsx-runtime").JSX.Element; export default ColorPickerButton; //# sourceMappingURL=ColorPickerButton.d.ts.map