import { ICommentItem } from '../CommentDrawer/CommentDrawer.container';
import { IFilterOption, ISortOption } from '../CommentDrawer/components/CommentMenu';
export declare const sortComments: (comments: ReadonlyArray<ICommentItem>, sortBy: ISortOption | undefined, direction?: "ascending" | "descending") => ICommentItem[];
export declare const filterComments: (comments: ReadonlyArray<ICommentItem>, filterBy: IFilterOption[]) => ICommentItem[];
