import { TariffType } from './types';
type TariffCardProps = {
    label: string;
    variant: TariffType;
    description?: string;
    extraText: string;
    currency: string;
    price: string;
    discount?: string;
    selected?: boolean;
    caps: string;
    popularText?: string;
    onClick?: (e: React.MouseEvent) => void;
};
type TariffCardEnterpriseProps = {
    label: string;
    variant: 'ENTERPRISE';
    description?: string;
    extraText: string;
    button: React.ReactNode;
};
export declare const TariffCard: React.FC<TariffCardProps | TariffCardEnterpriseProps>;
export { TariffCardEnterpriseButton, TariffCardArrow } from './styled';
