import { FC } from 'react';
import { NativeProps } from 'antd-mobile/es/utils/native-props';
import type { ImageProps } from '@tarojs/components';
export declare type AvatarProps = {
    fallback?: string;
} & Omit<ImageProps, 'style'> & NativeProps<'--size' | '--border-radius'>;
export declare const Avatar: FC<AvatarProps>;
