import './Avatar.css'; export declare const avatarPropSize: readonly ["m", "s", "xs", "l"]; export type AvatarPropSize = typeof avatarPropSize[number]; export declare const avatarPropSizeDefault: AvatarPropSize; export declare const avatarPropForm: readonly ["round", "brick", "default"]; export type AvatarPropForm = typeof avatarPropForm[number]; export declare const avatarPropFormDefault: AvatarPropForm; type Props = { url?: string; name?: string; size?: AvatarPropSize; form?: AvatarPropForm; children?: never; monochrome?: boolean; }; export declare const cnAvatar: import("@bem-react/classname").ClassNameFormatter; export declare const Avatar: import("../../utils/types/PropsWithAsAttributes").ComponentWithAs; export {};