import type { Colors, ElProps } from '..'; export declare const AVATAR_SIZES: readonly ["xs", "sm", "ep", "md", "lg", "xl"]; export type AvatarSizes = typeof AVATAR_SIZES[number]; export interface AvatarProps extends Partial { /** * Set color for Avatar */ color?: Colors; /** * Set image for Avatar */ image?: string | undefined; /** * Set Avatar shape to: 'pill' */ pill?: boolean; /** * Set Avatar shape to: 'rounded corners' */ rounded?: boolean; /** * Set Avatar shape to: 'tile' */ tile?: boolean; /** * Set size for Avatar: 'xs', 'sm', 'ep', 'md', 'lg', 'xl' */ size?: AvatarSizes; }