import { Mark } from '@tiptap/core'; export interface TextStyleOptions { HTMLAttributes: Record; } declare module '@tiptap/core' { interface Commands { textStyle: { /** * Remove spans without inline style attributes. */ removeEmptyTextStyle: () => ReturnType; }; } } export declare const TextStyle: Mark;