/** @remarks \@since 4.0.1 */ export interface GetPercentageOptions { /** * The min value allowed. */ min: number; /** * The max value allowed. */ max: number; /** * The current value */ value: number; /** * Boolean if the min, max, and value options should be validated to make sure * they are within the correct range relative to each other. * * @defaultValue `true` */ validate?: boolean; } /** * Gets the current percentage based on the min, max, and current value. * * @returns the percentage that the `value` is between the `min` and `max` * values. * @internal * @remarks \@since 4.0.1 uses an object for options instead of multiple * arguments. */ export declare function getPercentage({ min, max, value, validate, }: GetPercentageOptions): number;