import './User.css'; export declare const userPropSize: readonly ["m", "s"]; export declare type UserPropSize = typeof userPropSize[number]; export declare const userPropSizeDefault: UserPropSize; export declare const userPropView: readonly ["clear", "ghost"]; export declare type UserPropView = typeof userPropView[number]; export declare const userPropViewDefault: UserPropView; export declare const userPropWidth: readonly ["default", "full"]; export declare type UserPropWidth = typeof userPropWidth[number]; export declare const userPropWidthDefault: UserPropWidth; export declare const userPropStatus: readonly ["available", "remote", "out"]; export declare type UserPropStatus = typeof userPropStatus[number]; declare type Props = { avatarUrl?: string; name?: string; size?: UserPropSize; view?: UserPropView; width?: UserPropWidth; status?: UserPropStatus; onlyAvatar?: boolean; withArrow?: boolean; info?: string; children?: never; }; export declare const cnUser: import("@bem-react/classname").ClassNameFormatter; export declare const User: import("../../utils/types/PropsWithAsAttributes").ComponentWithAs; export {};