export interface IRange {
    from: number | undefined;
    to: number | undefined;
}
