import React, { HTMLAttributes, ReactNode } from 'react';
export interface CWidgetStatsEProps extends Omit, 'title'> {
/**
* A string of all className you want applied to the base component.
*/
className?: string;
/**
* Chart node for your component.
*/
chart?: string | ReactNode;
/**
* Title node for your component.
*/
title?: string | ReactNode;
/**
* Value node for your component.
*/
value?: string | number | ReactNode;
}
export declare const CWidgetStatsE: React.ForwardRefExoticComponent>;