import { DrawerProps } from '@mui/material/Drawer';
import { ICommentRichText } from '../CommentCard';
import { ICommentDrawer, ICommentItem } from './CommentDrawer.container';
export type ICommentReplyDrawerComponent = DrawerProps & ICommentRichText & Pick<ICommentDrawer, 'currentUser' | 'onCommentClick' | 'onReplyAdd'> & {
    comment: ICommentItem;
} & {
    searchTerm?: string;
};
export declare const CommentReplyDrawerComponent: React.FC<ICommentReplyDrawerComponent>;
