import { Coord2DType } from '../data-type';
export interface IPickerRectangle {
    p0: Coord2DType;
    p1: Coord2DType;
    bMustBeFullyEnclosed?: boolean;
    bHighlightPicked?: boolean;
    entityTypeFilter: Array<string>;
    bFilterForExclude?: boolean;
    selectMode?: string;
}
export interface IPickerMaterial {
    screenPos: Coord2DType;
    EntityTypeFilter: Array<string>;
    bFilterForExclude?: boolean;
}
export interface IPickerTilesNode {
    point1: Coord2DType;
    point2: Coord2DType;
    bMustBeFullyEnclosed?: boolean;
    selectMode?: string;
}
