import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
export interface IVeltCommentDialogComposerInputProps extends IVeltWireframeCommonProps {
    placeholder?: string;
    commentplaceholder?: string;
    replyplaceholder?: string;
}
declare const VeltCommentDialogComposerInput: React.FC<IVeltCommentDialogComposerInputProps>;
export default VeltCommentDialogComposerInput;
