export type ColorOptions = { types: string[]; }; declare module "@tiptap/core" { interface Commands { backColor: { /** * Set the text background color */ setBackColor: (color: string) => ReturnType; /** * Unset the text background color */ unsetBackColor: () => ReturnType; }; } } export declare const BackColor: any; export type BackgroundColorButtonProps = { colors?: string[]; }; export declare function BackgroundColorButton({ colors, }: BackgroundColorButtonProps): any; //# sourceMappingURL=BackgroundColorButton.d.ts.map