import { FunctionComponent, HTMLProps, ReactNode } from 'react';
/**
* The container to wrap MessageAttachment components. You must wrap any MessageAttachment components in this container.
* Use this component when passing children to Message to customize its structure.
*/
export interface MessageAttachmentsContainerProps extends HTMLProps {
/** Content to render inside the attachments container */
children: ReactNode;
/** Additional classes applied to the attachments container. */
className?: string;
}
export declare const MessageAttachmentsContainer: FunctionComponent;
export default MessageAttachmentsContainer;