import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { AvatarSize } from '../Avatar';
import type { ElevationType, PlacementType } from '../Tooltip';
export type AvatarGroupProps = {
    children?: React.ReactNode;
    size?: AvatarSize;
    borderColor?: string;
    maxTooltipLines?: number;
    placement?: PlacementType;
    maxAvatars?: number;
    tooltipElevation?: ElevationType;
};
export declare const AvatarGroup: Flow.AbstractComponent<AvatarGroupProps, HTMLDivElement>;
//# sourceMappingURL=AvatarGroup.d.ts.map