/** * Returns the percentage the input value represents from the total. * @param value - given value * @param total - given total sum of values * @param allowNegativeValues - If false all negative values will be changed to positive * @internal */ export declare const getRelativeValue: (value: number, total: number, allowNegativeValues?: boolean) => number;