import { BoxProps, ColorPickerProps, ElementProps, PopoverProps } from '@mantine/core'; export interface RichTextEditorColorPickerControlProps extends BoxProps, ElementProps<'button'> { /** Props added to Popover component */ popoverProps?: Partial; /** Props added to ColorPicker component */ colorPickerProps?: Partial; /** List of colors that the user can choose from */ colors: string[]; } export declare const RichTextEditorColorPickerControl: import("react").ForwardRefExoticComponent>;