import { EntityEidType, EntityGeometryType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface ViewshedType extends EntityEidType, EntityGeometryType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
    viewshedStyle?: Partial<ViewShedEntityAtomType>;
}
export interface ViewShedEntityAtomType {
    visibleColor: string;
    hiddenColor: string;
    outline: boolean;
    fieldOfView: number;
    radius: number;
}
