import { BaseRender } from '@visactor/vrender-core'; import type { IGraphicAttribute, IGraphic, IPickParams, IGraphicRender } from '@visactor/vrender-core'; import type { IPoint } from '@visactor/vutils'; export declare abstract class Base3dPicker>> extends BaseRender { canvasRenderer: IGraphicRender; themeType: string; contains(graphic: IGraphic, point: IPoint, params?: IPickParams): boolean; }