import { FC, ReactNode } from 'react';
import { EColors } from '../../types/EColors';
interface IProps {
    title: string;
    subtitle: string;
    value: string;
    subvalue: string;
    loading?: boolean;
    icon: ReactNode;
    valueColor?: EColors;
    onClick?: () => void;
    crossedValue?: boolean;
}
declare const TransactionCell: FC<IProps>;
export default TransactionCell;
