import React from 'react';
export type Props = {
    type: 'big' | 'small';
    description: string;
    value: string | number;
    withIcon?: JSX.Element;
    isInACard?: boolean;
    cardColor?: string;
    className?: string;
};
declare const StatisticCard: ({ type, description, value, withIcon, isInACard, cardColor, className, }: Props) => React.JSX.Element;
export { StatisticCard };
