import { ReactElement, RefAttributes } from 'react';
import { TagGroupProps, TagListProps } from 'react-aria-components/TagGroup';
type AIComposerAttachmentsGroupProps<T> = Omit<TagGroupProps, 'children' | 'className' | 'style'> & Omit<TagListProps<T>, 'className' | 'style'>;
export declare const AIComposerAttachmentsGroup: <T>(props: AIComposerAttachmentsGroupProps<T> & RefAttributes<HTMLDivElement>) => ReactElement | null;
export type { AIComposerAttachmentsGroupProps };
