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