import type { BoxElementProps } from "@twilio-paste/core/box"; import * as React from "react"; import type { HTMLPasteProps } from "../types"; export interface AIChatMessageLoadingProps extends HTMLPasteProps<"div"> { children?: never; element?: BoxElementProps["element"]; onStopLoading?: () => void; i18nStopGeneratingLabel?: string; i18nAIScreenReaderText?: string; } export declare const AIChatMessageLoading: React.ForwardRefExoticComponent>;