/// import { TailwindFn } from 'twrnc'; import { ImageSourcePropType } from 'react-native'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; src: ImageSourcePropType; onPress?: () => void; style?: Style; size?: number; accessibilityLabel: string; }; declare const RoundAvatar: ({ tw, src, onPress, style, size, accessibilityLabel, }: Props) => JSX.Element; export default RoundAvatar;