import type { ImageSourcePropType } from 'react-native'; import type { TSize, TStyle, TTextStyle } from '../common/types'; export interface IAvatarProps { children?: string; size?: TSize; source?: ImageSourcePropType; style?: TStyle; textStyle?: TTextStyle; }