import React from 'react'; import { ViewStyle, TextStyle, StyleProp, ImageSourcePropType } from 'react-native'; import { SpacingProps } from '../../../theme'; import { TestableProps } from '../../common/test'; import { BoxProps } from '../../common/box'; import { ShadowProps } from '../../common/shadow'; export type AvatarSize = 'small' | 'medium' | 'large' | number; export type AvatarShape = 'circle' | 'rounded' | 'square'; export type AvatarStatus = 'online' | 'offline'; export interface AvatarProps extends SpacingProps, BoxProps, TestableProps, ShadowProps { src?: ImageSourcePropType; name?: string; size?: AvatarSize; shape?: AvatarShape; status?: AvatarStatus; style?: StyleProp; textStyle?: StyleProp; } export declare const Avatar: React.FC; //# sourceMappingURL=Avatar.d.ts.map