import React from 'react'; export type AvatarContainerProps = React.HTMLAttributes & { /** * You can pass the primary, default, secondary name of the colors or your specified color value */ readonly color?: 'default' | 'primary' | 'secondary' | string; /** * Avatar size variant\ * \ * **Default**: `2.5em` */ readonly size?: string; }; declare const _default: React.ForwardRefExoticComponent & { /** * You can pass the primary, default, secondary name of the colors or your specified color value */ readonly color?: string | undefined; /** * Avatar size variant\ * \ * **Default**: `2.5em` */ readonly size?: string | undefined; } & React.RefAttributes>; export default _default;