///
import { Palette, Omit, Size, Flexible } from '../types';
import { ImageProps } from '../Image';
export declare type LocalAvatarProps = {
/** Variant of the avatar. */
variant?: Flexible<'circle', string>;
/** URL of the avatar image. */
src?: string;
/** Size of the avatar. */
size?: Size | string;
/** Initials to place on the avatar. */
initials?: string;
/** Color of the avatar. */
palette?: Palette;
};
export declare type AvatarProps = Omit & LocalAvatarProps;
export declare const Avatar: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};