import React from 'react';
export interface IVeltCommentDialogComposerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    editMode?: boolean;
    commentObj?: any | string;
    commentIndex?: number | string;
    composerWireframe?: any;
    placeholder?: string;
    commentplaceholder?: string;
    replyplaceholder?: string;
    editplaceholder?: string;
    editcommentplaceholder?: string;
    editreplyplaceholder?: string;
    targetElementId?: string;
    targetComposerElementId?: string;
    documentId?: string;
    locationId?: string;
    folderId?: string;
    context?: {
        [key: string]: any;
    };
}
declare const VeltCommentDialogComposer: React.FC<IVeltCommentDialogComposerProps>;
export default VeltCommentDialogComposer;
