import type { JSX } from 'react';
export type CommentProps = {
    onSubmit: (value: {
        comment: string;
    }) => void;
    onCancel?: () => unknown;
    settings?: {
        label?: string;
        submitText?: string;
    };
    standAlone?: boolean;
    isDialog?: boolean;
    className?: string;
};
export declare function Comment({ settings, onSubmit, onCancel, className, standAlone, isDialog, }: CommentProps): JSX.Element;
