import { Chat } from '../../types/research'; declare const DeleteChat: ({ chatId, chats, setChats, redirect, }: { chatId: string; chats: Chat[]; setChats: (chats: Chat[]) => void; redirect?: boolean; }) => import("react").JSX.Element; export default DeleteChat;