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