import React from 'react'; import type { StyleProp, TextStyle } from 'react-native'; export interface TextAvatarProps { name: string; size: number; textColor?: string; noUpperCase?: boolean; textStyle?: StyleProp; } declare const TextAvatar: ({ name, size, textColor, noUpperCase, textStyle, }: TextAvatarProps) => React.JSX.Element; export default TextAvatar; //# sourceMappingURL=TextAvatar.d.ts.map