import * as React from "react";
import { HTMLPasteProps } from "../types";
import type { AIChat } from "./useAIChatLogger";
export interface AIChatLoggerProps extends HTMLPasteProps<"div"> {
aiChats: AIChat[];
children?: never;
}
export declare const AIChatLogger: React.ForwardRefExoticComponent>;