import React from 'react';
import { UserTariff } from './types';
export interface UserTariffBadgeProps extends Omit<React.ComponentProps<'div'>, 'children'> {
    skeleton?: boolean;
    tariff?: UserTariff;
}
export declare const UserTariffBadge: React.FC<UserTariffBadgeProps>;
export * from './types';
export * from './styled';
