import React from 'react'; import { ViewStyle, TextStyle, ImageSourcePropType } from 'react-native'; import { SpacingProps } from '../../../theme'; import { AvatarSize, AvatarShape, AvatarStatus } from '../Avatar'; import { TestableProps } from '../../common/test'; import { BoxProps } from '../../common/box'; export interface AvatarItem { src?: ImageSourcePropType; name?: string; status?: AvatarStatus; } export interface AvatarGroupProps extends SpacingProps, BoxProps, TestableProps { items: AvatarItem[]; size?: AvatarSize; shape?: AvatarShape; max?: number; overlap?: number; style?: ViewStyle | ViewStyle[]; textStyle?: TextStyle | TextStyle[]; } export declare const AvatarGroup: React.FC; export default AvatarGroup; //# sourceMappingURL=AvatarGroup.d.ts.map