import { Conversation } from "../../../interfaces/models/Conversation"; export interface FetchConversationProps { conversationId: string; } declare function useFetchConversation(): (props: FetchConversationProps) => Promise; export default useFetchConversation;