import React from 'react';
import { ImageSourcePropType } from 'react-native';
type Props = {
    backgroundColor?: string;
    defaultText?: string;
    fontSize?: number;
    image?: ImageSourcePropType;
    size?: number;
    textColor?: string;
    onPress?: () => void;
};
export declare const CircleAvatar: ({ backgroundColor, defaultText, fontSize, image, onPress, size, textColor, }: Props) => React.JSX.Element;
export {};
