import { ComponentProps } from 'react'; type AvatarGroupEmptyStateProps = { actionLabel?: string; description?: string; onAction?: () => void; title: string; } & Omit, "children">; export declare function AvatarGroupEmptyState({ actionLabel, className, description, onAction, title, ...props }: AvatarGroupEmptyStateProps): import("react").JSX.Element; export {};