import { Theme } from '@mui/material'; import { Property } from 'csstype'; export declare const extractPaletteFromTheme: (theme: Theme, min: number, max: number) => Property.Color[]; export declare const createPalette: (colors: Property.Color[], values: number[]) => Property.Color[]; export declare const createDistribution: (values: number[]) => number[]; export declare const dispatchMouseEventOnChart: (element: HTMLElement | null, x: number, y: number) => void; export declare const dispatchMouseLeaveOnChart: (element: HTMLElement | null) => void; export declare const formatPercentage: (percentage: number, threshold?: number) => string;