import { ScaleOrdinal, ScaleQuantize, ScaleThreshold } from 'd3-scale'; import { MinMax } from '../../core/types/min-max.js'; interface GetBaseColorProps { scale: ScaleQuantize | ScaleThreshold | ScaleOrdinal; value: string | number; } export declare function getBaseColor(params: GetBaseColorProps, extent?: Partial): string | undefined; export {};