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