import React from 'react';
export type AvatarSize = 'sm' | 'md' | 'lg';
export type AvatarShape = 'circle' | 'square';
export interface AvatarProps {
    className?: string;
    src?: string;
    alt?: string;
    url?: string;
    size?: AvatarSize;
    shape?: AvatarShape;
    children?: React.ReactNode;
    style?: Record<string, string>;
}
export declare const Avatar: (props: AvatarProps) => React.JSX.Element;
