import { SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { CommonSystemProps } from './system-props'; declare const defaultElement = "img"; declare type Shape = 'circle' | 'square'; export declare type AvatarProps = SxProp & CommonSystemProps & { shape?: Shape; size?: number; }; declare type AvatarComponent = ForwardRefComponent; export declare const Avatar: AvatarComponent; export {};