import { FunctionComponent } from 'react'; import type { HTMLProps } from 'react'; /** * MessageLoading displays a loading animation for messages. * Use this component when passing children to Message to show a loading state. */ export interface MessageLoadingProps extends HTMLProps { /** Text announced to screen readers during loading. */ loadingWord?: string; /** Flag indicating whether primary styling is applied */ isPrimary?: boolean; } export declare const MessageLoading: FunctionComponent; export default MessageLoading;