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