import { Mark } from '@tiptap/core';
export interface VeltCommentsOptions {
    HTMLAttributes: Record<string, any>;
}
declare module '@tiptap/core' {
    interface Commands<ReturnType> {
        veltComments: {
            setVeltComment: (annotationId?: string, multiThreadAnnotationId?: string) => ReturnType;
        };
    }
}
export declare const VeltComments: Mark<VeltCommentsOptions, any>;
export default VeltComments;
