import { CommentsSortByOptions } from "../../interfaces/CommentsSortByOptions";
import { Comment as CommentType } from "../../interfaces/models/Comment";
declare function useFetchComments(): (props: {
    entityId?: string | null | undefined;
    userId?: string | null | undefined;
    parentId?: string | null | undefined;
    sortBy?: CommentsSortByOptions;
    page: number;
    limit?: number;
    includeEntity?: boolean;
}) => Promise<CommentType[]>;
export default useFetchComments;
