import { ImageProps } from 'react-native'; import { CustomBoxProps } from '../Box/interface'; export declare type ImageXorLabel = { image: string; label?: never; } | { image?: never; label: string; }; export declare type AvatarProps = ImageXorLabel & CustomBoxProps & Partial;