import { type SIZES } from "./../../../constants/sizes"; export type Size = (typeof SIZES)[keyof typeof SIZES]; export declare const calculatePercentage: (value: number, min: number, max: number, allowExceeding?: boolean) => number; export declare const getProgressBarClassNames: (value: number) => string;