export declare type StatValue = number | Range;
export declare type Range = [number, number];
export declare const isRange: (value: StatValue) => value is [number, number];
export declare const isZero: (value: StatValue) => boolean;
