import { LegendRatio } from '../types/legend.js'; export declare const DEFAULT_PIE_LEGEND_RATIO = 80; export declare const LEGEND_RATIO_RANGE: { min: number; max: number; }; /** * Returns the value of the ratio if it is in the range of allowed values (10-80), otherwise it will return the default ratio * @param legendRatio - */ export declare const sanitizeLegendRatio: (legendRatio?: LegendRatio) => number;