export type Variation = 'positive' | 'negative'; export interface Props { className: string; customStyle: object; // eslint-disable-next-line @typescript-eslint/no-explicit-any theme: any; variation: Variation; percentage: number; maxPercentage: number; renderTooltipContent: Function; withPercentage: boolean; withGradient: boolean; withDot: boolean; }