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