import "./index.css"; interface Position { x: number; y: number; } interface CommentInputPopoverProps { commentInput: { content: string; isVisible: boolean; } | null; computedPosition: Position | null; onClose: () => void; onContentChange: (content: string) => void; onSave: () => void; } export declare function CommentInputPopover({ commentInput, computedPosition, onClose, onContentChange, onSave, }: CommentInputPopoverProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=comment-input-popover.d.ts.map