import React from 'react';
export interface IVeltCommentDialogCloseButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
}
declare const VeltCommentDialogCloseButton: React.FC<IVeltCommentDialogCloseButtonProps>;
export default VeltCommentDialogCloseButton;
