import React from 'react'; export type MimeType = 'image/webp' | 'image/jpeg' | 'image/png' | 'image/gif' | 'image/apng' | 'image/svg+xml' | 'image/bmp' | 'image/x-icon'; export type SrcObject = { readonly srcSet: string; readonly type: MimeType; readonly isDefault?: boolean; }; export type AvatarPictureProps = React.HTMLAttributes & { /** * image object of Avatar component * Example: * ```tsx * * Label * * ``` */ readonly src: SrcObject[]; /** * Avatar style variant\ * Allowed variants: `circular`,`rounded` or `square`\ * \ * **Default**: `circular` */ readonly variant?: 'circular' | 'rounded' | 'square'; }; declare const _default: React.ForwardRefExoticComponent & { /** * image object of Avatar component * Example: * ```tsx * * Label * * ``` */ readonly src: SrcObject[]; /** * Avatar style variant\ * Allowed variants: `circular`,`rounded` or `square`\ * \ * **Default**: `circular` */ readonly variant?: "square" | "circular" | "rounded" | undefined; } & React.RefAttributes>; export default _default;