import React from 'react';
interface Comment {
    id: string;
    fromUserId: string;
    comment: string;
    position: {
        x: number;
        y: number;
    };
}
interface CommentDisplayProps {
    comments: Comment[];
    onRemove: (id: string) => void;
}
export declare const CommentDisplay: React.FC<CommentDisplayProps>;
export {};
