import { ICommentItem } from '../CommentDrawer.container';
import { ICommentDrawerComponent } from '../CommentDrawer.component';
export type ICommentVirtualizedList = Pick<ICommentDrawerComponent, 'comments' | 'selectedCommentId' | 'currentUser' | 'onReplyAdd' | 'searchTerm' | 'mode' | 'richTextConfig'> & {
    onSelectComment: (comment?: ICommentItem) => void;
};
export declare const CommentVirtualizedList: (props: ICommentVirtualizedList) => import("react/jsx-runtime").JSX.Element;
