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