import type { BoxElementProps } from "@twilio-paste/core/box"; import * as React from "react"; import type { HTMLPasteProps } from "../types"; export interface AIChatMessageAuthorProps extends HTMLPasteProps<"div"> { children: string; element?: BoxElementProps["element"]; "aria-label": string; avatarName?: string; imageUrl?: string; } export declare const AIChatMessageAuthor: React.ForwardRefExoticComponent>;