import type { BoxProps } from "@twilio-paste/core/box"; import * as React from "react"; export type As = React.ElementType; type BlockedGlobalHTMLAttrs = "style" | "className" | "color"; export type PropsOf = React.ComponentPropsWithoutRef; type HTMLPasteProps = Omit, "ref" | BlockedGlobalHTMLAttrs>; export interface AIChatLogProps extends HTMLPasteProps<"div"> { children?: React.ReactNode; element?: BoxProps["element"]; } export declare const AIChatLog: React.ForwardRefExoticComponent>; export {};