import { Node } from '@tiptap/core';
import 'katex/dist/katex.min.css';
export interface MathInlineOptions {
    HTMLAttributes: Record<string, any>;
}
declare module '@tiptap/core' {
    interface Commands<ReturnType> {
        mathInline: {
            setMathInline: (latex: string) => ReturnType;
        };
    }
}
export declare const MathInline: Node<MathInlineOptions, any>;
export default MathInline;
