import React from 'react';
export interface IVeltCommentDialogComposerInputProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    editMode?: boolean;
    commentObj?: any | string;
    commentIndex?: number | string;
    placeholder?: string;
    commentplaceholder?: string;
    replyplaceholder?: string;
    editplaceholder?: string;
    editcommentplaceholder?: string;
    editreplyplaceholder?: string;
}
declare const VeltCommentDialogComposerInput: React.FC<IVeltCommentDialogComposerInputProps>;
export default VeltCommentDialogComposerInput;
