import { type WebChatActivity } from 'botframework-webchat-core';
import React from 'react';
type LiveRegionAttachmentsProps = Readonly<{
    activity: Readonly<WebChatActivity & {
        type: 'message';
    }>;
}>;
declare const LiveRegionAttachments: ({ activity }: LiveRegionAttachmentsProps) => React.JSX.Element;
export default LiveRegionAttachments;
export type { LiveRegionAttachmentsProps };
//# sourceMappingURL=LiveRegionAttachments.d.ts.map