import { FC } from 'react';
import { Comment } from '../../api/schemas';
type Props = {
    readonly item: Comment;
};
export declare const CommentRow: FC<Props>;
export {};
