import React from 'react';
import { AvatarProps } from '@/ui/components/avatar';
import { TariffPlan } from '@/ui/components/types';
export type SidebarUserInfoAvatarProps = Omit<AvatarProps & {
    tariffPlan?: TariffPlan;
}, 'ref'>;
export declare const SidebarUserInfoAvatar: React.FC<SidebarUserInfoAvatarProps>;
