import React from 'react';
export interface IVeltCommentDialogContextWrapperProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    [key: string]: any;
}
declare const VeltCommentDialogContextWrapper: React.FC<IVeltCommentDialogContextWrapperProps>;
export default VeltCommentDialogContextWrapper;
