import { Comment, CommentIncludeParam } from "../../interfaces/models/Comment";
export interface FetchCommentProps {
    commentId: string;
    include?: CommentIncludeParam;
}
declare function useFetchComment(): (props: FetchCommentProps) => Promise<{
    comment: Comment;
}>;
export default useFetchComment;
