/** Normalization of values */
export interface NormalizationFunction<TValue> {
    (value: TValue): TValue;
}
