import * as React from 'react';
import { Avatar } from '@dcl/schemas/dist/platform/profile/avatar';
import './AvatarFace.css';
export declare type AvatarFaceProps = {
    avatar?: Avatar;
    size?: 'tiny' | 'small' | 'medium' | 'large' | 'responsive';
    inline?: boolean;
    className?: string;
};
/**
 * @deprecated Should start using the same component migrated to UI2.
 */
export declare class AvatarFace extends React.PureComponent<AvatarFaceProps> {
    static defaultProps: Partial<AvatarFaceProps>;
    render(): JSX.Element;
}
