import React from 'react';
export type AddCommentFormProps = {
    close: () => void;
    messageId: string;
};
export declare const AddCommentForm: ({ close, messageId }: AddCommentFormProps) => React.JSX.Element;
