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