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