import { IPoint } from './i-point';
export interface IMinMaxPoint {
    min: IPoint;
    max: IPoint;
}
