import React from "react"; import { ImageSourcePropType, ImageStyle, StyleProp, TextStyle, ViewStyle } from "react-native"; import { PaletteColor } from "./base"; export interface AvatarProps { label?: string | React.ReactElement | ((props: { color: string; }) => React.ReactElement | null) | null; image?: ImageSourcePropType | React.ReactElement | ((props: { size: number; }) => React.ReactElement | null) | null; icon?: React.ReactElement | ((props: { color: string; size: number; }) => React.ReactElement | null) | null; size?: number; color?: PaletteColor; tintColor?: PaletteColor; initials?: boolean; uppercase?: boolean; autoColor?: boolean; style?: StyleProp; contentContainerStyle?: StyleProp; imageContainerStyle?: StyleProp; labelStyle?: StyleProp; imageStyle?: StyleProp; } declare const Avatar: React.FC; export default Avatar;