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