import React from 'react';
export interface IVeltCommentDialogOptionsDropdownContentDeleteProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    commentObj?: any | string;
    type?: 'comment' | 'thread';
    commentId?: number | string;
    commentIndex?: number | string;
}
declare const VeltCommentDialogOptionsDropdownContentDelete: React.FC<IVeltCommentDialogOptionsDropdownContentDeleteProps>;
export default VeltCommentDialogOptionsDropdownContentDelete;
