import React from 'react';
export interface IVeltCanvasCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    canvasId: string;
    position: any;
}
declare const VeltCanvasComment: React.FC<IVeltCanvasCommentProps>;
export default VeltCanvasComment;
